The following table was created as response to the SQL query SELECT sbs_sbsname "SBS name", sbs_sbsnumber "SBS number", m_methodname "general method", ch_singlevalue "single value [m]", ch_n "sample size", ch_valid "valid", ref_refname "reference", ch_mean "mean CH [m]", ch_maximum "maximum CH [m]", ch_minimum "minimum CH [m]", ch_replicates "number of replicates", ch_stddev "standard deviation", ch_stderror "standard error", ch_collectiondate "collection date", or_origrefname "original reference", geo_countryname "country", sst_typename "external support structure" FROM (SELECT case when ch_median is not null then ch_median when ch_mean is not null then ch_mean when ch_minimum is not null and ch_maximum is not null then (ch_minimum + ch_maximum) / 2 when ch_minimum is not null then ch_minimum when ch_maximum is not null then ch_maximum else null end AS ch_singlevalue, sbs_sbsnumber, sbs_sbsname, m_methodname, ch_mean, ch_minimum, ch_maximum, ch_n, ch_valid, ref_refname, ch_replicates, ch_stddev, ch_stderror, ch_collectiondate, or_origrefname, geo_countryname, sst_typename, ch_sbsnumber FROM (SELECT sbs.sbs_sbsnumber, sbs.sbs_sbsname, m_ch.m_methodname, m_ch.ch_median, m_ch.ch_mean, m_ch.ch_minimum, m_ch.ch_maximum, m_ch.ch_n, m_ch.ch_valid, m_ch.ref_refname, m_ch.ch_replicates, m_ch.ch_stddev, m_ch.ch_stderror, m_ch.ch_collectiondate, m_ch.or_origrefname, m_ch.geo_countryname, m_ch.sst_typename, m_ch.ch_sbsnumber FROM (SELECT speciesno AS sbs_sbsnumber, fullname AS sbs_sbsname FROM (SELECT fullname, speciesno, familyname, isinledalist from (select fullname, speciesno, family as familyid, isinledalist from taxon where specieslist = 60028) natural join taxonomicfamily)) sbs JOIN (SELECT r_ch.ch_sbsnumber, m.m_methodname, r_ch.ch_median, r_ch.ch_mean, r_ch.ch_minimum, r_ch.ch_maximum, r_ch.ch_n, r_ch.ch_valid, r_ch.ref_refname, r_ch.ch_replicates, r_ch.ch_stddev, r_ch.ch_stderror, r_ch.ch_collectiondate, r_ch.or_origrefname, r_ch.geo_countryname, r_ch.sst_typename FROM (SELECT methodid AS m_methodid, methodname AS m_methodname FROM (select * from method_lv)) m JOIN (SELECT ch_orf.ch_sbsnumber, ch_orf.ch_methodid, ch_orf.ch_median, ch_orf.ch_mean, ch_orf.ch_minimum, ch_orf.ch_maximum, ch_orf.ch_n, ch_orf.ch_valid, r.ref_refname, ch_orf.ch_replicates, ch_orf.ch_stddev, ch_orf.ch_stderror, ch_orf.ch_collectiondate, ch_orf.or_origrefname, ch_orf.geo_countryname, ch_orf.sst_typename FROM (SELECT referenceid AS ref_referenceid, refname AS ref_refname FROM (select referenceid, refname, reftypeid from reference)) r LEFT JOIN (SELECT ch_geo.ch_sbsnumber, ch_geo.ch_methodid, ch_geo.ch_median, ch_geo.ch_mean, ch_geo.ch_minimum, ch_geo.ch_maximum, ch_geo.ch_n, ch_geo.ch_valid, ch_geo.ch_referenceid, ch_geo.ch_replicates, ch_geo.ch_stddev, ch_geo.ch_stderror, ch_geo.ch_collectiondate, orf.or_origrefname, ch_geo.geo_countryname, ch_geo.sst_typename FROM (SELECT ch_sslv.ch_sbsnumber, ch_sslv.ch_methodid, ch_sslv.ch_median, ch_sslv.ch_mean, ch_sslv.ch_minimum, ch_sslv.ch_maximum, ch_sslv.ch_n, ch_sslv.ch_valid, ch_sslv.ch_referenceid, ch_sslv.ch_replicates, ch_sslv.ch_stddev, ch_sslv.ch_stderror, ch_sslv.ch_collectiondate, ch_sslv.ch_origreferenceid, geo.geo_countryname, ch_sslv.sst_typename FROM (SELECT ch.ch_sbsnumber, ch.ch_methodid, ch.ch_median, ch.ch_mean, ch.ch_minimum, ch.ch_maximum, ch.ch_n, ch.ch_valid, ch.ch_referenceid, ch.ch_replicates, ch.ch_stddev, ch.ch_stderror, ch.ch_collectiondate, ch.ch_origreferenceid, ch.ch_georeferenceid, sslv.sst_typename FROM (SELECT sbsnumber AS ch_sbsnumber, methodid AS ch_methodid, median AS ch_median, mean AS ch_mean, minimum AS ch_minimum, maximum AS ch_maximum, n AS ch_n, valid AS ch_valid, referenceid AS ch_referenceid, replicates AS ch_replicates, stddeviation AS ch_stddev, stderror AS ch_stderror, collectiondate AS ch_collectiondate, origreferenceid AS ch_origreferenceid, georefid AS ch_georeferenceid, supportstructuretypeid AS ch_structureid 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, supportstructuretypeid, canopyheightid FROM canopyheight natural join taxontosbsassignment WHERE valid IN (-2, 1))) ch FULL JOIN (SELECT supportstructuretypeid AS sst_typeid, supportstructuretypename AS sst_typename FROM (select supportstructuretypeid, supportstructuretypename from supportstructuretype_lv)) sslv ON ch.ch_structureid = sslv.sst_typeid) ch_sslv FULL JOIN (SELECT georefid AS geo_georefid, countryname AS geo_countryname FROM (select * from georef_part)) geo ON ch_sslv.ch_georeferenceid = geo.geo_georefid) ch_geo 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 ch_geo.ch_origreferenceid = orf.or_origrefid) ch_orf ON r.ref_referenceid = ch_orf.ch_referenceid) r_ch ON m.m_methodid = r_ch.ch_methodid) m_ch ON sbs.sbs_sbsnumber = m_ch.ch_sbsnumber)) ORDER BY sbs_sbsnumber on Mon Jul 14 15:27:18 CEST 2008 . SBS name;SBS number;general method;single value [m];sample size;valid;reference;mean CH [m];maximum CH [m];minimum CH [m];number of replicates;standard deviation;standard error;collection date;original reference;country;external support structure Marsilea quadrifolia;5;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pilularia globulifera;12;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salvinia natans;17;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Azolla filiculoides;22;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Athyrium distentifolium;35;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Athyrium distentifolium;35;actual measurement (following LEDA data standards);.06;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.11;.04;;;;;;NORWAY;unknown Athyrium filix-femina;37;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cystopteris fragilis;43;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cystopteris montana;47;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cystopteris sudetica;48;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Matteuccia struthiopteris;57;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Woodsia alpina;64;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Woodsia ilvensis;65;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polypodium vulgare;71;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium adiantum-nigrum;90;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium adulterinum;92;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium cuneifolium;101;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium fissum;104;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium fontanum;105;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium seelosii;113;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium septentrionale;116;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium trichomanes;117;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium ceterach;125;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium scolopendrium;133;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium ruta-muraria;156;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Blechnum spicant;160;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum arvense;166;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum fluviatile;167;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum hyemale;170;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.5;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum palustre;174;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum pratense;175;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum ramosissimum;176;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum sylvaticum;179;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum telmateia;180;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Equisetum variegatum;184;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cryptogramma crispa;188;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pteridium aquilinum;250;unknown;.7;1;1;Cody, W. J.(1975): The biology of canadian weeds. 15. Pteridium aquilinum (L.) Kuhn [55];;1.5;.3;1;;;;Cody, W. J.(1975): The biology of canadian weeds. 15. Pteridium aquilinum (L.) Kuhn [55];CANADA;unknown Pteridium aquilinum;250;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hymenophyllum tunbrigense;262;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Botrychium lunaria;270;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Botrychium matricariifolium;271;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Botrychium multifidum;273;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Botrychium simplex;279;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Botrychium virginianum;280;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ophioglossum vulgatum;283;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Osmunda regalis;295;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thelypteris palustris;299;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oreopteris limbosperma;315;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polystichum lonchitis;326;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polystichum setiferum;332;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polystichum aculeatum;337;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris villarii;342;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gymnocarpium dryopteris;355;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gymnocarpium robertianum;359;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polystichum braunii;370;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.6;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris carthusiana;377;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris cristata;383;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris dilatata;387;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris filix-mas;393;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Selaginella helvetica;438;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Huperzia selago;464;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Huperzia selago;464;actual measurement (following LEDA data standards);.11;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.13;.08;;;;;;NORWAY;unknown Huperzia selago;464;actual measurement (following LEDA data standards);.09;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.09;.06;;;;;;NORWAY;unknown Lycopodium annotinum;476;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopodium clavatum;479;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pseudotsuga menziesii;562;derivation from photos or drawings;65;;1;BIOPOP April 2005;;90;40;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tsuga canadensis;566;derivation from photos or drawings;20;;1;BIOPOP April 2005;;30;10;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinus cembra;578;derivation from photos or drawings;15;;1;BIOPOP April 2005;;15;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinus nigra;593;derivation from photos or drawings;40;;1;BIOPOP April 2005;;40;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinus pinaster;607;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinus strobus;623;derivation from photos or drawings;30;;1;BIOPOP April 2005;;40;20;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinus sylvestris;624;unknown;46;;1;BIOPOP April 2005;;46;;;;;;Carlisle, A. (1968): Biological flora of the British Isles: Pinus sylvestris L. [56(1)];;unknown Pinus sylvestris;624;unknown;22.5;;1;BIOPOP April 2005;;30;15;;;;;Carlisle, A. (1968): Biological flora of the British Isles: Pinus sylvestris L. [56(1)];;unknown Pinus sylvestris;624;derivation from photos or drawings;40;;1;BIOPOP April 2005;;40;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinus sylvestris;624;unknown;46;;1;BIOPOP April 2005;;46;;;;;;Carlisle, A. (1968): Biological flora of the British Isles: Pinus sylvestris L. [56(1)];;unknown Pinus sylvestris;624;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinus sylvestris;624;unknown;22.5;;1;BIOPOP April 2005;;30;15;;;;;Carlisle, A. (1968): Biological flora of the British Isles: Pinus sylvestris L. [56(1)];;unknown Abies grandis;634;derivation from photos or drawings;50;;1;BIOPOP April 2005;;70;30;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Abies nordmanniana;639;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Larix decidua;653;derivation from photos or drawings;35;;1;BIOPOP April 2005;;35;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picea abies;670;derivation from photos or drawings;50;;1;BIOPOP April 2005;;50;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picea glauca;684;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Humphries, C. J.(1990): Der Kosmos-Baumführer;GERMANY;unknown Picea omorika;686;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picea pungens;689;derivation from photos or drawings;35;;1;BIOPOP April 2005;;35;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picea sitchensis;691;derivation from photos or drawings;60;;1;BIOPOP April 2005;;60;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Abies alba;697;derivation from photos or drawings;50;;1;BIOPOP April 2005;;50;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juniperus sabina;711;derivation from photos or drawings;4;;1;BIOPOP April 2005;;4;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juniperus sabina;711;derivation from photos or drawings;1.1;;1;BIOPOP April 2005;;2;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamaecyparis lawsoniana;724;derivation from photos or drawings;25;;1;BIOPOP April 2005;;30;20;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juniperus communis;741;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Juniperus communis;741;derivation from photos or drawings;12;;1;BIOPOP April 2005;;12;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juniperus communis;741;derivation from photos or drawings;3;;1;BIOPOP April 2005;;5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juniperus communis;741;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;;;;;;Ward, L. (unknown e-mail address);;unknown Juniperus communis;741;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Ward, L. (unknown e-mail address);;unknown Thuja occidentalis;755;derivation from photos or drawings;17.5;;1;BIOPOP April 2005;;20;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thuja occidentalis;755;unknown;15;;1;BIOPOP April 2005;;15;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Thuja orientalis;756;derivation from photos or drawings;7.5;;1;BIOPOP April 2005;;10;5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thuja orientalis;756;unknown;5;;1;BIOPOP April 2005;;5;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Acer monspessulanum;783;derivation from photos or drawings;11;;1;BIOPOP April 2005;;11;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer negundo;785;derivation from photos or drawings;11.5;;1;BIOPOP April 2005;;20;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer opalus;791;derivation from photos or drawings;12;;1;BIOPOP April 2005;;12;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer platanoides;801;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Acer platanoides;801;unknown;25;;1;BIOPOP April 2005;;30;20;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Acer platanoides;801;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer platanoides;801;unknown;25;;1;BIOPOP April 2005;;25;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Acer pseudoplatanus;803;observation (like obvious taxonomical traits);18;;1;ECOFLORA - database of the ecological flora of the british isles;;;18;;;;;Jones, E. W. (1944): no title given, publication in Journal of Ecology issue: 32 pages: 215-252 [32];;unknown Acer pseudoplatanus;803;unknown;21;;1;BIOPOP April 2005;;24;18;;;;;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;;unknown Acer pseudoplatanus;803;unknown;40;;1;BIOPOP April 2005;;40;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Acer pseudoplatanus;803;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer pseudoplatanus;803;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Acer pseudoplatanus;803;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;;unknown Acer saccharinum;805;derivation from photos or drawings;40;;1;BIOPOP April 2005;;40;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer campestre;811;actual measurement;13.75;1;1;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;;15.5;12;1;;;;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;UNITED KINGDOM;no Acer campestre;811;unknown;21;;1;BIOPOP April 2005;;22;20;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Acer campestre;811;derivation from photos or drawings;3;;1;BIOPOP April 2005;;5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acer campestre;811;unknown;12;;1;BIOPOP April 2005;;15;9;;;;;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;;unknown Acer campestre;811;observation (like obvious taxonomical traits);12;;1;ECOFLORA - database of the ecological flora of the british isles;;15;9;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Acer campestre;811;observation (like obvious taxonomical traits);9;;1;ECOFLORA - database of the ecological flora of the british isles;;;9;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Acer campestre;811;unknown;23.2;;1;BIOPOP April 2005;;23.2;;;;;;Jones, E. W. (1944): Biological flora of the British Isles: Acer L.;;unknown Taxus baccata;835;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;20;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Taxus baccata;835;unknown;20;;1;BIOPOP April 2005;;20;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Taxus baccata;835;unknown;15;;1;BIOPOP April 2005;;15;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Taxus baccata;835;derivation from photos or drawings;15;;1;BIOPOP April 2005;;15;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taxodium distichum;838;derivation from photos or drawings;40;;1;BIOPOP April 2005;;50;30;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus albus;891;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus blitoides;892;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus caudatus;894;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus caudatus;894;laboratory/greenhouse/garden experiment;.68;18;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.62;.73;.37;;;;;;GERMANY;no Amaranthus crispus;895;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus hybridus;897;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus deflexus;900;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus graecizans;901;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carpobrotus edulis;922;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Amaranthus lividus;924;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.65;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus retroflexus;931;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amaranthus retroflexus;931;laboratory/greenhouse/garden experiment;.71;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.57;.8;.23;;;;;;GERMANY;no Amaranthus retroflexus;931;laboratory/greenhouse/garden experiment;.17;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.24;.55;.12;;;;;;GERMANY;no Amaranthus standleyanus;932;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Celosia argentea;935;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.45;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotinus coggygria;944;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhus typhina;955;derivation from photos or drawings;4.5;;1;BIOPOP April 2005;;6;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trinia glauca;966;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trinia glauca;966;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trinia glauca;966;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silaum silaus;993;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silaum silaus;993;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silaum silaus;993;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sison amomum;995;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sison amomum;995;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Smyrnium olusatrum;1000;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Smyrnium olusatrum;1000;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Torilis arvensis;1012;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Seseli libanotis;1044;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Seseli libanotis;1044;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Seseli libanotis;1044;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pleurospermum austriacum;1061;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scandix pecten-veneris;1087;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scandix pecten-veneris;1087;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scandix pecten-veneris;1087;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Selinum carvifolia;1092;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Selinum carvifolia;1092;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Selinum carvifolia;1092;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petroselinum crispum;1095;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.85;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petroselinum segetum;1097;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Petroselinum segetum;1097;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Peucedanum alsaticum;1100;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum officinale;1112;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Peucedanum officinale;1112;unknown;.9;;1;BIOPOP April 2005;;.9;;;;;;Randall(1996): Biological flora of the British Isles: Peucedanum officinale L.;UNITED KINGDOM;unknown Peucedanum officinale;1112;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Peucedanum officinale;1112;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum ostruthium;1118;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Peucedanum ostruthium;1118;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum ostruthium;1118;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pimpinella major;1134;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pimpinella major;1134;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pimpinella major;1134;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.9;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ligusticum scoticum;1141;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ligusticum scoticum;1141;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Meum athamanticum;1148;observation (like obvious taxonomical traits);.335;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Meum athamanticum;1148;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Meum athamanticum;1148;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myrrhis odorata;1152;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myrrhis odorata;1152;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myrrhis odorata;1152;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe aquatica;1156;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe aquatica;1156;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pastinaca sativa;1183;observation (like obvious taxonomical traits);1.05;;1;ECOFLORA - database of the ecological flora of the british isles;;1.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pastinaca sativa;1183;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pastinaca sativa;1183;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Laserpitium prutenicum;1215;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Laserpitium prutenicum;1215;laboratory/greenhouse/garden experiment;.26;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.31;.51;.19;;;;;;GERMANY;no Laserpitium siler;1216;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ligusticum mutellina;1224;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ligusticum mutellina;1224;field experiment;.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.3;.3;;;;;;GERMANY;no Ligusticum mutellinoides;1225;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Heracleum sphondylium;1232;observation (like obvious taxonomical traits);1.25;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Heracleum sphondylium;1232;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Heracleum sphondylium;1232;unknown;2.5;;1;BIOPOP April 2005;;3;2;;;;;Sheppard, A. W. (1991): Biological flora of the British Isles: Heracleum sphondylium L.;;unknown Heracleum sphondylium;1232;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Foeniculum vulgare;1281;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Foeniculum vulgare;1281;derivation from photos or drawings;1.075;;1;BIOPOP April 2005;;1.5;.65;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Heracleum austriacum;1291;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Heracleum mantegazzianum;1295;observation (like obvious taxonomical traits);5.5;;1;ECOFLORA - database of the ecological flora of the british isles;;5.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Heracleum mantegazzianum;1295;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;3.2;1.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eryngium campestre;1324;field experiment;.15;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.15;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Eryngium campestre;1324;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eryngium campestre;1324;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eryngium campestre;1324;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eryngium maritimum;1328;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eryngium maritimum;1328;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eryngium maritimum;1328;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eryngium planum;1329;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Conopodium majus;1346;observation (like obvious taxonomical traits);.29;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Conopodium majus;1346;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Conopodium majus;1346;derivation from photos or drawings;.28;;1;BIOPOP April 2005;;.4;.16;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crithmum maritimum;1350;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crithmum maritimum;1350;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daucus carota;1358;field experiment;.097;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.097;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Daucus carota;1358;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Daucus carota;1358;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daucus carota;1358;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum tenuissimum;1364;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum tenuissimum;1364;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum tenuissimum;1364;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaerophyllum aureum;1393;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.05;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaerophyllum bulbosum;1394;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.3;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaerophyllum bulbosum;1394;laboratory/greenhouse/garden experiment;.75;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.76;1.05;.52;;;;;;GERMANY;no Chaerophyllum hirsutum;1398;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.75;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cnidium dubium;1405;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Conium maculatum;1410;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Conium maculatum;1410;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.6;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bupleurum gerardi;1418;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bupleurum longifolium;1423;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bupleurum ranunculoides;1426;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bupleurum baldense;1435;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum baldense;1435;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anthriscus nitida;1447;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Apium graveolens;1456;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium graveolens;1456;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium graveolens;1456;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Athamanta cretensis;1469;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aethusa cynapium;1502;observation (like obvious taxonomical traits);.625;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aethusa cynapium;1502;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aethusa cynapium;1502;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ammi majus;1508;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.85;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ammi majus;1508;laboratory/greenhouse/garden experiment;.24;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.24;.24;.24;;;;;;GERMANY;no Anethum graveolens;1512;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anethum graveolens;1512;laboratory/greenhouse/garden experiment;.52;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.6;.93;.28;;;;;;GERMANY;no Angelica archangelica;1514;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Angelica archangelica;1514;derivation from photos or drawings;1.55;;1;BIOPOP April 2005;;2.1;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Angelica archangelica;1514;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Angelica palustris;1518;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Angelica sylvestris;1519;observation (like obvious taxonomical traits);1.15;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Angelica sylvestris;1519;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Angelica sylvestris;1519;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthriscus cerefolium;1526;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthriscus cerefolium;1526;laboratory/greenhouse/garden experiment;.38;24;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.39;.54;.27;;;;;;GERMANY;no Sium latifolium;1536;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sium latifolium;1536;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tordylium maximum;1545;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tordylium maximum;1545;laboratory/greenhouse/garden experiment;.61;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.6;.96;.21;;;;;;GERMANY;no Torilis japonica;1552;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Torilis japonica;1552;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Torilis japonica;1552;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Torilis nodosa;1554;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Torilis nodosa;1554;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Seseli hippomarathrum;1571;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum carvifolia;1620;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum cervaria;1621;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pimpinella saxifraga;1643;derivation from photos or drawings;.29;;1;BIOPOP April 2005;;.5;.08;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Pimpinella saxifraga;1643;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pimpinella saxifraga;1643;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe crocata;1659;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe crocata;1659;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe fistulosa;1660;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe fistulosa;1660;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe pimpinelloides;1666;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe pimpinelloides;1666;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenanthe silaifolia;1668;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Oenanthe silaifolia;1668;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Laser trilobum;1700;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Laserpitium latifolium;1705;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carum verticillatum;1858;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Carum verticillatum;1858;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carum verticillatum;1858;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum rotundifolium;1894;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bupleurum falcatum;1909;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bupleurum falcatum;1909;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthriscus sylvestris;1916;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anthriscus sylvestris;1916;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.15;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthriscus sylvestris;1916;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium inundatum;1920;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium inundatum;1920;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium nodiflorum;1922;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium nodiflorum;1922;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Apium nodiflorum;1922;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Apium repens;1923;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Apium repens;1923;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astrantia major;1925;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Berula erecta;1938;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Berula erecta;1938;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Berula erecta;1938;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bifora radians;1939;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bifora radians;1939;laboratory/greenhouse/garden experiment;.43;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.42;.52;.3;;;;;;GERMANY;no Anthriscus caucalis;1975;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anthriscus caucalis;1975;laboratory/greenhouse/garden experiment;.39;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.41;.61;.25;;;;;;GERMANY;no Anthriscus caucalis;1975;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anthriscus caucalis;1975;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Turgenia latifolia;1998;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Turgenia latifolia;1998;laboratory/greenhouse/garden experiment;.31;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.36;.67;.18;;;;;;GERMANY;no Aegopodium podagraria;2007;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aegopodium podagraria;2007;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.75;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aegopodium podagraria;2007;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Smyrnium perfoliatum;2032;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum oreoselinum;2070;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum palustre;2071;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Peucedanum palustre;2071;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.3;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Peucedanum palustre;2071;actual measurement (following LEDA data standards);.93;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.93;1.18;.78;;;;;;GERMANY;no Peucedanum palustre;2071;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Physospermum cornubiense;2075;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Physospermum cornubiense;2075;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sanicula europaea;2102;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sanicula europaea;2102;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sanicula europaea;2102;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oenanthe fluviatilis;2103;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Oenanthe lachenalii;2104;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Oenanthe peucedanifolia;2106;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orlaya grandiflora;2113;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orlaya grandiflora;2113;laboratory/greenhouse/garden experiment;.4;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.4;.51;.26;;;;;;GERMANY;no Levisticum officinale;2151;derivation from photos or drawings;1.2;;1;BIOPOP April 2005;;1.6;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hydrocotyle vulgaris;2206;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Hydrocotyle vulgaris;2206;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Falcaria vulgaris;2255;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Caucalis platycarpos;2287;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaerophyllum aromaticum;2289;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cicuta virosa;2295;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cicuta virosa;2295;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cicuta virosa;2295;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coriandrum sativum;2310;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coriandrum sativum;2310;laboratory/greenhouse/garden experiment;.57;24;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.56;.65;.45;;;;;;GERMANY;no Carum carvi;2331;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bunium bulbocastanum;2366;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bunium bulbocastanum;2366;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bunium bulbocastanum;2366;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astrantia bavarica;2397;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adoxa moschatellina;2407;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Adoxa moschatellina;2407;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Adoxa moschatellina;2407;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aristolochia clematitis;2411;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aristolochia clematitis;2411;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aristolochia clematitis;2411;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asarum europaeum;2429;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ilex aquifolium;2439;unknown;23;;1;BIOPOP April 2005;;23;;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Ilex aquifolium;2439;unknown;17;;1;BIOPOP April 2005;;24;10;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Ilex aquifolium;2439;unknown;11.5;;1;BIOPOP April 2005;;17;6;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Ilex aquifolium;2439;unknown;3.5;;1;BIOPOP April 2005;;6;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Ilex aquifolium;2439;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;6;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ilex aquifolium;2439;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ilex aquifolium;2439;observation (like obvious taxonomical traits);6.5;;1;ECOFLORA - database of the ecological flora of the british isles;;10;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ilex aquifolium;2439;unknown;23;;1;BIOPOP April 2005;;23;;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Ilex aquifolium;2439;unknown;17;;1;BIOPOP April 2005;;24;10;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Ilex aquifolium;2439;unknown;11.5;;1;BIOPOP April 2005;;17;6;;;;;Peterken, G. F. (1967): Biological flora of the British Isles: Ilex aquifolium L. [55];;unknown Hedera helix;2449;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London [];;unknown Hedera helix;2449;derivation from photos or drawings;10.25;;1;BIOPOP April 2005;;20;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hedera helix;2449;unknown;9;;1;BIOPOP April 2005;;15;3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Hedera helix;2449;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London [];;unknown Vincetoxicum hirundinaria;2467;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vinca major;2533;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Vinca minor;2536;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Vinca minor;2536;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.2;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Echinops sphaerocephalus;2586;derivation from photos or drawings;1.075;;1;BIOPOP April 2005;;1.6;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis aurea;2623;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis praemorsa;2633;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron alpinus;2651;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron uniflorus;2653;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron neglectus;2654;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filago lutescens;2658;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea montana;2682;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cicerbita alpina;2692;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cichorium intybus;2694;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carduus crispus;2731;derivation from photos or drawings;1.125;;1;BIOPOP April 2005;;1.7;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carduus personata;2736;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Antennaria dioica;2770;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthemis cotula;2778;derivation from photos or drawings;.285;;1;BIOPOP April 2005;;.45;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthemis tinctoria;2787;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bellis perennis;2808;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.1;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Doronicum grandiflorum;2870;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.45;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea phrygia;2883;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.75;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium eriophorum;2903;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.8;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium canum;2905;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis bocconi;2916;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis jacquinii;2920;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea nigrescens;2931;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea calcitrapa;2960;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea calcitrapa;2960;laboratory/greenhouse/garden experiment;.4;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.4;.4;.4;;;;;;GERMANY;no Artemisia campestris;2974;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia maritima;2981;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea millefolium;3013;actual measurement;.316;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.316;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Achillea millefolium;3013;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea nobilis;3014;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthemis arvensis;3024;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthemis arvensis;3024;laboratory/greenhouse/garden experiment;.27;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;.3;.22;;;;;;GERMANY;no Cicerbita macrophylla;3060;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.4;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cichorium endivia;3061;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium helenioides;3067;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium helenioides;3067;actual measurement (following LEDA data standards);.6;25;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.61;.9;.49;;;;;;NORWAY;unknown Cirsium tuberosum;3068;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis capillaris;3071;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis tectorum;3084;derivation from photos or drawings;.265;;1;BIOPOP April 2005;;.45;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea cyanus;3132;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea cyanus;3132;laboratory/greenhouse/garden experiment;.81;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.74;.9;.52;;;;;;GERMANY;no Centaurea maculosa;3140;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster alpinus;3147;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens connata;3153;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.9;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carduus defloratus;3164;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carlina acaulis;3171;derivation from photos or drawings;.31;;1;BIOPOP April 2005;;.6;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea roseo-alba;3187;derivation from photos or drawings;.67;;1;BIOPOP April 2005;;.67;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Achillea roseo-alba;3187;derivation from photos or drawings;.23;;1;BIOPOP April 2005;;;.23;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Achillea roseo-alba;3187;derivation from photos or drawings;.41;;1;BIOPOP April 2005;;.5;.32;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Adenostyles alliariae;3188;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adenostyles alpina subsp. alpina;3190;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aposeris foetida;3210;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium acaule;3252;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cnicus benedictus;3260;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cnicus benedictus;3260;laboratory/greenhouse/garden experiment;.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.64;.21;;;;;;GERMANY;no Centaurea triumfetti;3293;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.55;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carduus acanthoides;3326;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carlina vulgaris;3338;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctium nemorosum;3371;derivation from photos or drawings;1.6;;1;BIOPOP April 2005;;2.3;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filago pyramidata;3396;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filago pyramidata;3396;laboratory/greenhouse/garden experiment;.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.16;.09;;;;;;GERMANY;no Crepis foetida;3405;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Doronicum glaciale;3422;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron acer;3429;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea solstitialis;3444;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea solstitialis;3444;laboratory/greenhouse/garden experiment;.73;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.72;.8;.61;;;;;;GERMANY;no Carduus nutans;3493;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea collina;3512;laboratory/greenhouse/garden experiment;.55;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.56;.76;.41;;;;;;GERMANY;no Aster amellus;3537;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster tripolium;3539;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea clavennae;3559;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chondrilla chondrilloides;3564;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eupatorium cannabinum;3585;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea scabiosa;3597;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.35;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctium tomentosum;3664;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arnica montana;3665;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arnoseris minima;3666;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster tradescantii;3673;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.15;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calendula arvensis;3677;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium spinosissimum;3682;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Doronicum pardalianches;3685;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.75;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea phrygia subsp. pseudophrygia;3702;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis vesicaria;3710;derivation from photos or drawings;.41;;1;BIOPOP April 2005;;.6;.22;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Filaginella uliginosa;3719;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chrysanthemum segetum;3728;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium vulgare;3737;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea nigra;3754;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.65;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens cernua;3807;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.9;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens cernua;3807;laboratory/greenhouse/garden experiment;.48;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.43;.54;.21;;;;;;GERMANY;no Carthamus tinctorius;3822;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.75;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carthamus tinctorius;3822;laboratory/greenhouse/garden experiment;1.03;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.03;1.03;1.03;;;;;;GERMANY;no Anthemis ruthenica;3848;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron glabratus;3862;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Doronicum columnae;3889;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens tripartita;3990;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.9;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calendula officinalis;3991;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea macrophylla;4009;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea macrophylla;4009;laboratory/greenhouse/garden experiment;.68;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.71;1.04;.52;;;;;;GERMANY;no Antennaria carpatica;4017;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium rivulare;4050;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis setosa;4060;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctium minus;4154;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.9;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia vulgaris;4158;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2.25;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia umbelliformis;4171;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ambrosia artemisiifolia;4198;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ambrosia artemisiifolia;4198;laboratory/greenhouse/garden experiment;1.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.44;1.77;1.25;;;;;;GERMANY;no Erigeron borealis;4210;actual measurement;.146;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.146;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Crepis biennis;4230;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.8;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea rhenana;4249;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea jacea;4270;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia scoparia;4272;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthemis austriaca;4304;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia laciniata;4315;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.35;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea cartilaginea;4689;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1.1;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acroptilon repens;4695;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.7;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis pyrenaica;4706;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster x salignus;4781;derivation from photos or drawings;.925;;1;BIOPOP April 2005;;1.1;.75;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea atrata;4794;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea ptarmica;4799;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;1.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Doronicum austriacum;4827;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster novi-belgii;4901;derivation from photos or drawings;1.075;;1;BIOPOP April 2005;;1.45;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis terglouensis;4938;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.07;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia verlotiorum;4943;derivation from photos or drawings;1.6;;1;BIOPOP April 2005;;2;1.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotula coronopifolia;5009;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.18;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium arvense;5024;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium arvense;5024;unknown;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Moore, R. J. (1975): The biology of Canadian weeds 13. Cirsium arvense (L.) Scop.;;unknown Cirsium dissectum;5048;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron annuus;5070;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron annuus;5070;laboratory/greenhouse/garden experiment;.9;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.86;.98;.58;;;;;;GERMANY;no Conyza canadensis;5194;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.9;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis nicaeensis;5197;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Buphthalmum salicifolium;5238;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Buphthalmum salicifolium;5238;actual measurement (following LEDA data standards);.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.3;.3;;;;;;GERMANY;no Centaurea alpestris;5244;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Crepis vesicaria s. haenseleri;5286;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea pannonica;5321;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens radiata;5325;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;1;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia rupestris;5327;derivation from photos or drawings;.215;;1;BIOPOP April 2005;;.35;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster linosyris;5330;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erigeron gaudinii;5343;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia abrotanum;5370;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chondrilla juncea;5390;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carpesium cernuum;5461;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia absinthium;5486;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia annua;5487;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.4;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia pontica;5491;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster lanceolatus;5496;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.15;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cicerbita plumieri;5540;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia austriaca;5603;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia siversiana;5610;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster novae-angliae;5614;derivation from photos or drawings;1.175;;1;BIOPOP April 2005;;1.4;.95;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis pulchra;5675;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis mollis;5768;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis alpestris;5873;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis paludosa;5882;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filago vulgaris;5888;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium palustre;5896;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.3;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamomilla suaveolens;5904;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Achillea setacea;5941;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster bellidiastrum;5946;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aster laevis;5953;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ambrosia coronopifolia;5955;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamomilla recutita;5994;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.35;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctium lappa;6084;derivation from photos or drawings;1.1;;1;BIOPOP April 2005;;1.4;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctium lappa;6084;laboratory/greenhouse/garden experiment;1.07;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.05;1.26;.83;;;;;;GERMANY;no Erigeron atticus;6101;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cirsium oleraceum;6109;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crepis conyzifolia;6115;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurea diffusa;6142;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia dracunculus;6183;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;1.1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bidens frondosa;6191;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calycocorsus stipitatus;6299;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ambrosia trifida;6319;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.3;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ambrosia trifida;6319;laboratory/greenhouse/garden experiment;1.04;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.21;1.83;.69;;;;;;GERMANY;no Lactuca serriola;6360;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Jurinea cyanoides;6414;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium hoppeanum;6451;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochoeris radicata;6499;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Inula salicina;6502;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca quercina;6509;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca sativa;6510;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.75;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca viminea;6511;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon pyrenaicus;6519;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium echioides;6543;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca perennis;6626;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lapsana communis;6629;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon hispidus;6638;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.4;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium pilosella;6658;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon incanus;6757;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium x schultesii;6784;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Inula germanica;6798;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galinsoga ciliata;6801;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galinsoga ciliata;6801;laboratory/greenhouse/garden experiment;.22;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.23;.25;.22;;;;;;GERMANY;no Hieracium piloselloides;6837;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontopodium alpinum;6862;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium cymosum;6921;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochaeris glabra;7007;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochaeris glabra;7007;laboratory/greenhouse/garden experiment;.27;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;.27;.27;;;;;;GERMANY;no Hieracium aurantiacum;7024;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium intybaceum;7054;derivation from photos or drawings;.145;;1;BIOPOP April 2005;;.25;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helichrysum arenarium;7066;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium umbellatum;7093;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.8;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon montanus;7107;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galinsoga parviflora;7147;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galinsoga parviflora;7147;laboratory/greenhouse/garden experiment;.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.33;.47;.24;;;;;;GERMANY;no Leucanthemopsis alpina;7191;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium lactucella;7271;actual measurement;.134;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.134;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Hieracium lactucella;7271;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon autumnalis;7298;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon autumnalis;7298;actual measurement (following LEDA data standards);.03;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.05;.02;;;;;;NORWAY;unknown Leontodon autumnalis;7298;actual measurement (following LEDA data standards);.06;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.06;.04;;;;;;NORWAY;unknown Inula helvetica;7341;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Inula ensifolia;7409;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca saligna;7415;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca tatarica;7416;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leontodon taraxacoides subsp. taraxacoides;7423;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium acuminatum;7467;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gnaphalium luteo-album;7695;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helianthus tuberosus;7788;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium peleteranum s. tenuiscapum;7852;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Inula helenium;7875;derivation from photos or drawings;1.35;;1;BIOPOP April 2005;;1.8;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca virosa;7940;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lactuca virosa;7940;laboratory/greenhouse/garden experiment;1.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1;1.23;.66;;;;;;GERMANY;no Helianthus annuus;7986;derivation from photos or drawings;1.8;;1;BIOPOP April 2005;;2.7;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helichrysum bracteatum;7987;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1.15;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium caespitosum;8116;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Homogyne discolor;8130;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iva xanthifolia;8135;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.8;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iva xanthifolia;8135;laboratory/greenhouse/garden experiment;1.23;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.2;1.44;.94;;;;;;GERMANY;no Inula hirta;8244;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochaeris maculata;8386;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochaeris maculata;8386;actual measurement (following LEDA data standards);.03;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.05;.09;.03;;;;;;SWEDEN;unknown Inula conyza;8404;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.65;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypochaeris uniflora;8453;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium alpinum gr.;8507;actual measurement (following LEDA data standards);.03;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.08;.02;;;;;;NORWAY;unknown Inula britannica;8741;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium x floribundum;8859;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Homogyne alpina;9177;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.08;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Homogyne alpina;9177;actual measurement (following LEDA data standards);.03;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.03;.03;.03;;;;;;GERMANY;no Senecio abrotanifolius;9234;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.3;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum Sec. Erythrosperma;9235;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.07;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Taraxacum Sec. Palustria;9256;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tragopogon porrifolius;9289;laboratory/greenhouse/garden experiment;.57;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.56;.66;.37;;;;;;GERMANY;no Senecio squalidus;9306;laboratory/greenhouse/garden experiment;.25;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.23;.33;.14;;;;;;GERMANY;no Onopordum acanthium;9350;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Onopordum acanthium;9350;laboratory/greenhouse/garden experiment;.64;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.64;.64;.64;;;;;;GERMANY;no Senecio integrifolius;9370;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum Sec. Alpestria;9380;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.07;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Senecio helenitis;9403;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus asper;9413;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scorzonera austriaca;9461;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio congestus;9467;derivation from photos or drawings;.46;;1;BIOPOP April 2005;;.8;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio doronicum;9471;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leucanthemum atratum;9476;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solidago canadensis;9491;derivation from photos or drawings;1.375;;1;BIOPOP April 2005;;2.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Telekia speciosa;9521;derivation from photos or drawings;1.175;;1;BIOPOP April 2005;;1.8;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prenanthes purpurea;9532;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saussurea alpina;9535;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saussurea alpina;9535;actual measurement (following LEDA data standards);.07;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.17;.02;;;;;;NORWAY;unknown Saussurea alpina;9535;actual measurement (following LEDA data standards);.08;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.13;.04;;;;;;NORWAY;unknown Scorzonera humilis;9541;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio aquaticus;9544;derivation from photos or drawings;.315;;1;BIOPOP April 2005;;.5;.13;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Senecio fluviatilis;9545;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.35;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Matricaria maritima;9565;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tussilago farfara;9608;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulicaria dysenterica;9613;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scorzonera hispanica;9619;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.15;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scorzonera purpurea;9620;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio alpinus;9622;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio inaequidens;9629;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio rivularis;9636;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silybum marianum;9640;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leucanthemum vulgare;9651;actual measurement;.328;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.328;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Leucanthemum vulgare;9651;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petasites spurius;9658;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picris hieracioides;9660;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picris hieracioides;9660;laboratory/greenhouse/garden experiment;.85;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.84;.93;.77;;;;;;GERMANY;no Tragopogon pratensis;9791;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saussurea discolor;9797;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solidago virgaurea;9820;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.9;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tanacetum corymbosum;9823;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum Sec. Obliqua;9860;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.07;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Tragopogon dubius;9874;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio sylvaticus;9889;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solidago graminifolia;9892;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.75;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus palustris;9894;derivation from photos or drawings;1.8;;1;BIOPOP April 2005;;2.7;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus palustris;9894;actual measurement (following LEDA data standards);2;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;2.1;2.9;1.3;;;;;;GERMANY;no Rudbeckia laciniata;9935;derivation from photos or drawings;1.35;;1;BIOPOP April 2005;;1.8;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scorzonera laciniata;10007;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio subalpinus;10020;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solidago gigantea;10023;derivation from photos or drawings;1.375;;1;BIOPOP April 2005;;2.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio viscosus;10121;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Serratula tinctoria;10123;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.9;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tanacetum vulgare;10128;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tanacetum macrophyllum;10157;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.4;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium strumarium;10168;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium strumarium;10168;laboratory/greenhouse/garden experiment;.31;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.39;.66;.19;;;;;;GERMANY;no Saussurea pygmaea;10217;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulicaria vulgaris;10384;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulicaria vulgaris;10384;laboratory/greenhouse/garden experiment;.57;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.55;.74;.31;;;;;;GERMANY;no Senecio jacobaea;10452;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio vulgaris;10456;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petasites hybridus;10476;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;1;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca hoppeana;10536;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca supina;10537;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca supina;10537;actual measurement (following LEDA data standards);.02;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.02;0;;;;;;NORWAY;unknown Omalotheca supina;10537;actual measurement (following LEDA data standards);.02;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.02;.01;;;;;;NORWAY;unknown Tragopogon pratensis s. orientalis;10571;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus arvensis;10586;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus oleraceus;10587;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sonchus oleraceus;10587;unknown;.9;;1;BIOPOP April 2005;.9;1.5;.2;;;;;Lewin, R. A. (1948): Biological Flora of the British Isles. Sonchus L. (Sonchus oleraceus L. and S. asper (L. ) Hill).;;unknown Sonchus oleraceus;10587;unknown;1.8;;1;BIOPOP April 2005;;1.8;;;;;;Lewin, R. A. (1948): Biological Flora of the British Isles. Sonchus L. (Sonchus oleraceus L. and S. asper (L. ) Hill).;;unknown Picris hieracioides s. villarsii;10611;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Logfia gallica;10826;derivation from photos or drawings;.105;;1;BIOPOP April 2005;;.15;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Picris echioides;10896;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petasites albus;11005;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.8;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio rupestris;11050;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rudbeckia hirta;11072;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio ovirensis s. gaudinii;11102;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio vernalis;11179;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio erucifolius;11230;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1.1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca sylvatica;11311;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium spinosum;11345;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Logfia minima;11400;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio aquaticus s. barbareifolius;11409;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Senecio paludosus;11419;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.7;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tolpis staticifolia;11441;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tanacetum parthenium;11451;derivation from photos or drawings;.29;;1;BIOPOP April 2005;;.55;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Logfia arvensis;11506;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mycelis muralis;11510;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.6;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca norvegica;11511;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omalotheca norvegica;11511;actual measurement (following LEDA data standards);.06;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.1;.03;;;;;;NORWAY;unknown Sigesbeckia orientalis;11602;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sigesbeckia orientalis;11602;laboratory/greenhouse/garden experiment;1.04;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.03;1.22;.88;;;;;;GERMANY;no Petasites paradoxus;11627;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scorzonera parviflora;11636;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Berberis vulgaris;11672;observation (like obvious taxonomical traits);1.75;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Berberis vulgaris;11672;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Berberis vulgaris;11672;derivation from photos or drawings;3;;1;BIOPOP April 2005;;3;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epimedium alpinum;11679;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mahonia aquifolium;11687;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mahonia aquifolium;11687;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mahonia aquifolium;11687;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alnus glutinosa;11694;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;McVean, D. N.(1953): no title given, publication in Journal of Ecology issue: 41 pages: 447-466 [41];;unknown Alnus glutinosa;11694;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alnus glutinosa;11694;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;20;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alnus incana;11695;derivation from photos or drawings;14;;1;BIOPOP April 2005;;25;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alnus viridis;11702;derivation from photos or drawings;3;;1;BIOPOP April 2005;;4;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Betula humilis;11714;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Betula nana;11715;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Betula nana;11715;unknown;1;;1;BIOPOP April 2005;1;;;;;;;De Groot, W. J.(1997): Biological flora of the British Isles: Betula nana L. and Betula glandulosa Michx.;;unknown Betula nana;11715;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Betula nana;11715;actual measurement (following LEDA data standards);.19;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.19;.32;.04;;;;;;NORWAY;unknown Betula pendula;11720;unknown;30;;1;BIOPOP April 2005;30;;;;;;;Atkinson, M. D. (1992): Biological flora of the British Isles: Betula pendula Roth (B. verrucosa Ehrh. ) and B. pubescens Ehrh.;;unknown Betula pendula;11720;unknown;28;;1;BIOPOP April 2005;;30;26;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Betula pendula;11720;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Betula pendula;11720;observation (like obvious taxonomical traits);25;;1;ECOFLORA - database of the ecological flora of the british isles;;25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Betula pubescens;11725;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;20;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Betula pubescens;11725;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Betula pubescens;11725;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Impatiens balsamina;11746;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Impatiens capensis;11747;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens capensis;11747;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens glandulifera;11749;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens glandulifera;11749;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Impatiens glandulifera;11749;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens noli-tangere;11751;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens noli-tangere;11751;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Impatiens noli-tangere;11751;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens parviflora;11752;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens parviflora;11752;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Impatiens parviflora;11752;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Symphytum officinale;11757;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphytum officinale;11757;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphytum officinale;11757;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Symphytum tuberosum;11764;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphytum tuberosum;11764;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphytum tuberosum;11764;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trachystemon orientalis;11771;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Pulmonaria montana;11790;derivation from photos or drawings;.215;;1;BIOPOP April 2005;;.35;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulmonaria officinalis;11796;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pulmonaria officinalis;11796;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pentaglottis sempervirens;11832;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pentaglottis sempervirens;11832;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pulmonaria angustifolia;11846;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulmonaria longifolia;11849;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pulmonaria longifolia;11849;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pulmonaria mollis;11853;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nonea pulla;11903;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omphalodes scorpioides;11922;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Omphalodes verna;11923;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Onosma arenaria;11924;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis ramosissima;11938;observation (like obvious taxonomical traits);.21;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis ramosissima;11938;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis ramosissima;11938;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis rehsteineri;11945;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis scorpioides;11951;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis scorpioides;11951;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis scorpioides;11951;derivation from photos or drawings;.385;;1;BIOPOP April 2005;;.7;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis secunda;11953;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis secunda;11953;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis sparsiflora;11960;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis stricta;11964;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis sylvatica;11966;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis sylvatica;11966;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis sylvatica;11966;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis discolor;11975;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis discolor;11975;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis laxa;11988;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis laxa;11988;laboratory/greenhouse/garden experiment;.12;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.14;.11;;;;;;GERMANY;no Myosotis laxa;11988;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis laxa;11988;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis nemorosa;11994;derivation from photos or drawings;.415;;1;BIOPOP April 2005;;.7;.13;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Lithospermum arvense;12012;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lithospermum arvense;12012;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lithospermum arvense;12012;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis alpestris;12022;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis alpestris;12022;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis alpestris;12022;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis arvensis;12027;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis arvensis;12027;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis arvensis;12027;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosotis decumbens;12034;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Heliotropium europaeum;12039;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lappula deflexa;12048;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lappula deflexa;12048;laboratory/greenhouse/garden experiment;.7;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.71;1.03;.4;;;;;;GERMANY;no Lappula squarrosa;12063;derivation from photos or drawings;.215;;1;BIOPOP April 2005;;.35;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lappula squarrosa;12063;laboratory/greenhouse/garden experiment;.4;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.41;.52;.33;;;;;;GERMANY;no Echium plantagineum;12090;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Echium plantagineum;12090;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Echium vulgare;12105;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Echium vulgare;12105;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Echium vulgare;12105;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerinthe glabra;12128;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerinthe minor;12134;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anchusa arvensis;12189;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anchusa arvensis;12189;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anchusa arvensis;12189;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Symphytum bulbosum;12211;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Symphytum orientale;12215;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis stolonifera;12387;observation (like obvious taxonomical traits);.16;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosotis stolonifera;12387;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lithospermum officinale;12411;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lithospermum officinale;12411;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lithospermum officinale;12411;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mertensia maritima;12418;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Buglossoides purpurocaerulea;12486;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cynoglossum germanicum;12512;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cynoglossum germanicum;12512;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cynoglossum germanicum;12512;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cynoglossum officinale;12519;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cynoglossum officinale;12519;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cynoglossum officinale;12519;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anchusa officinalis;12527;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asperugo procumbens;12544;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Borago officinalis;12546;derivation from photos or drawings;.31;;1;BIOPOP April 2005;;.5;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amsinckia lycopsoides;12585;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Amsinckia lycopsoides;12585;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anchusa azurea;12594;laboratory/greenhouse/garden experiment;.89;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.89;.89;.89;;;;;;GERMANY;no Arabidopsis thaliana;12652;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabidopsis thaliana;12652;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabidopsis thaliana;12652;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis caerulea;12655;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nasturtium microphyllum;12669;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nasturtium microphyllum;12669;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nasturtium microphyllum;12669;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium supinum;12711;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium volgense;12712;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iberis linifolia;12739;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erophila verna s. verna;12790;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eruca vesicaria s. sativa;12800;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erucastrum nasturtiifolium;12804;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hesperis matronalis subsp. matronalis;12834;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hesperis matronalis subsp. matronalis;12834;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Capsella bursa-pastoris;12848;observation (like obvious taxonomical traits);.215;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Capsella bursa-pastoris;12848;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Capsella bursa-pastoris;12848;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.25;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine bellidifolia s. alpina;12851;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum cheiri;12871;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erysimum cheiri;12871;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum cheiri;12871;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia danica;12875;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia danica;12875;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cochlearia danica;12875;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia danica;12875;laboratory/greenhouse/garden experiment;.03;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.04;.08;.03;;;;;;GERMANY;no Calepina irregularis;12957;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis hirsuta;13002;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis hirsuta;13002;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis hirsuta;13002;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.6;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis turrita;13010;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea intermedia;13016;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Barbarea intermedia;13016;laboratory/greenhouse/garden experiment;.38;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.38;.38;;;;;;GERMANY;no Barbarea intermedia;13016;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Barbarea intermedia;13016;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium altissimum;13034;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium altissimum;13034;laboratory/greenhouse/garden experiment;1.01;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.01;1.01;1;;;;;;GERMANY;no Sisymbrium altissimum;13034;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium altissimum;13034;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium officinale;13041;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium officinale;13041;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium officinale;13041;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium orientale;13042;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium orientale;13042;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium orientale;13042;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alliaria petiolata;13080;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alliaria petiolata;13080;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.75;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alliaria petiolata;13080;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Neslia paniculata;13116;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Raphanus sativus;13125;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Raphanus sativus;13125;laboratory/greenhouse/garden experiment;.54;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.55;.65;.46;;;;;;GERMANY;no Rorippa amphibia;13138;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa amphibia;13138;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa amphibia;13138;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronopus didymus;13200;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Coronopus didymus;13200;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronopus didymus;13200;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Descurainia sophia;13207;unknown;.6;1;1;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];;1;.2;1;;;;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];CANADA;unknown Descurainia sophia;13207;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Descurainia sophia;13207;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Descurainia sophia;13207;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba tomentosa;13232;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erophila glabrescens;13237;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.09;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erucastrum gallicum;13240;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum odoratum;13255;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine flexuosa;13294;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine flexuosa;13294;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine flexuosa;13294;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine impatiens;13298;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine impatiens;13298;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine impatiens;13298;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardaria draba;13313;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cochlearia anglica;13319;observation (like obvious taxonomical traits);.24;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia anglica;13319;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia anglica;13319;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis alpina;13346;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis alpina;13346;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis glabra;13349;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis glabra;13349;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis glabra;13349;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis glabra;13349;laboratory/greenhouse/garden experiment;.6;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.59;.71;.44;;;;;;GERMANY;no Arabis recta;13355;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis stricta;13357;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabis stricta;13357;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hymenolobus procumbens;13394;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine pratensis s. dentata;13397;derivation from photos or drawings;.315;;1;BIOPOP April 2005;;.45;.18;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Armoracia rusticana;13400;observation (like obvious taxonomical traits);1.25;;1;ECOFLORA - database of the ecological flora of the british isles;;1.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Armoracia rusticana;13400;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alyssum alyssoides;13424;observation (like obvious taxonomical traits);.16;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alyssum alyssoides;13424;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alyssum alyssoides;13424;laboratory/greenhouse/garden experiment;.09;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.08;.1;.06;;;;;;GERMANY;no Alyssum alyssoides;13424;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa pyrenaica;13444;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sinapis alba;13450;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sinapis alba;13450;laboratory/greenhouse/garden experiment;.39;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.41;.59;.29;;;;;;GERMANY;no Sinapis alba;13450;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sinapis alba;13450;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sinapis arvensis;13454;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sinapis arvensis;13454;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sinapis arvensis;13454;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Subularia aquatica;13468;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Subularia aquatica;13468;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Subularia aquatica;13468;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.08;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teesdalia nudicaulis;13470;observation (like obvious taxonomical traits);.265;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teesdalia nudicaulis;13470;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teesdalia nudicaulis;13470;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi alliaceum;13472;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Thlaspi alliaceum;13472;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thlaspi alliaceum;13472;laboratory/greenhouse/garden experiment;.24;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.23;.3;.14;;;;;;GERMANY;no Lepidium campestre;13495;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium campestre;13495;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium campestre;13495;laboratory/greenhouse/garden experiment;.27;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.26;.37;.13;;;;;;GERMANY;no Lepidium campestre;13495;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium graminifolium;13498;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.6;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium latifolium;13501;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.3;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium latifolium;13501;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium latifolium;13501;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.7;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium perfoliatum;13504;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium sativum;13505;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium sativum;13505;laboratory/greenhouse/garden experiment;.26;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.25;.34;.14;;;;;;GERMANY;no Lunaria annua;13513;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Matthiola incana;13527;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Matthiola incana;13527;laboratory/greenhouse/garden experiment;.38;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.41;.33;;;;;;GERMANY;no Matthiola incana;13527;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Raphanus raphanistrum;13549;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Raphanus raphanistrum;13549;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Raphanus raphanistrum;13549;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Raphanus raphanistrum;13549;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Raphanus raphanistrum;13549;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Conringia orientalis;13624;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Conringia orientalis;13624;laboratory/greenhouse/garden experiment;.28;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.29;.4;.24;;;;;;GERMANY;no Diplotaxis muralis;13634;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Diplotaxis muralis;13634;laboratory/greenhouse/garden experiment;.08;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.08;.12;.03;;;;;;GERMANY;no Diplotaxis muralis;13634;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Diplotaxis muralis;13634;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba fladnizensis;13651;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba sauteri;13658;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum crepidifolium;13679;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica juncea;13688;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica nigra;13691;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Brassica nigra;13691;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica nigra;13691;laboratory/greenhouse/garden experiment;.93;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.97;1.29;.69;;;;;;GERMANY;no Brassica rapa;13695;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Brassica rapa;13695;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.65;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica rapa;13695;laboratory/greenhouse/garden experiment;.32;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.44;.7;.3;;;;;;GERMANY;no Camelina microcarpa;13713;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine heptaphylla;13726;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardaminopsis petraea;13735;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cochlearia micacea;13743;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arabidopsis suecica;13762;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabidopsis suecica;13762;laboratory/greenhouse/garden experiment;.19;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.19;.25;.14;;;;;;GERMANY;no Barbarea verna;13787;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Barbarea verna;13787;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea verna;13787;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Biscutella laevigata;13799;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium strictissimum;13809;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thlaspi arvense;13825;unknown;.8;;1;BIOPOP April 2005;.8;;;;;;;Best, K. F. (1975): The biology of Canadian weeds. 9. Thlaspi arvense L.;;unknown Thlaspi arvense;13825;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thlaspi arvense;13825;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi arvense;13825;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Petrocallis pyrenaica;13874;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rapistrum rugosum;13886;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rapistrum rugosum;13886;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rorippa austriaca;13904;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rorippa austriaca;13904;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rorippa islandica;13905;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rorippa sylvestris;13910;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa sylvestris;13910;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa sylvestris;13910;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium austriacum;13926;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium loeselii;13930;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;.63;16;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.62;.72;.44;;;;;;GERMANY;no Sisymbrium loeselii;13930;laboratory/greenhouse/garden experiment;.44;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.44;.44;.44;;;;;;GERMANY;no Sisymbrium loeselii;13930;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium loeselii;13930;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium heterophyllum;13940;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium heterophyllum;13940;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium heterophyllum;13940;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.35;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium ruderale;13947;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium ruderale;13947;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lepidium ruderale;13947;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium virginicum;13952;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium virginicum;13952;laboratory/greenhouse/garden experiment;.49;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.52;.73;.34;;;;;;GERMANY;no Lunaria rediviva;13960;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;1.2;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hesperis matronalis;14004;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hesperis matronalis;14004;laboratory/greenhouse/garden experiment;.18;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.18;.18;.18;;;;;;GERMANY;no Hirschfeldia incana;14011;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hirschfeldia incana;14011;laboratory/greenhouse/garden experiment;.86;21;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.86;1.12;.66;;;;;;GERMANY;no Iberis amara;14025;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Iberis amara;14025;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Iberis amara;14025;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iberis umbellata;14042;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iberis umbellata;14042;laboratory/greenhouse/garden experiment;.29;24;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.29;.36;.18;;;;;;GERMANY;no Kernera saxatilis;14059;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba muralis;14065;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba muralis;14065;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba muralis;14065;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba norvegica;14067;observation (like obvious taxonomical traits);.035;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba norvegica;14067;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba siliquosa;14069;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erophila verna;14075;observation (like obvious taxonomical traits);.055;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erophila verna;14075;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erophila verna;14075;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum cheiranthoides;14097;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erysimum cheiranthoides;14097;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erysimum cheiranthoides;14097;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erysimum marschallianum;14107;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine resedifolia;14128;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine trifolia;14129;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.2;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardaminopsis arenosa;14130;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardaminopsis halleri;14132;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronopus squamatus;14154;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Coronopus squamatus;14154;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronopus squamatus;14154;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Coronopus squamatus;14154;laboratory/greenhouse/garden experiment;.08;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.08;.08;.08;;;;;;GERMANY;no Diplotaxis viminea;14168;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba aizoides;14170;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba aizoides;14170;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba aizoides;14170;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba dubia;14185;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Draba incana;14189;observation (like obvious taxonomical traits);.285;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Draba incana;14189;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Brassica elongata;14200;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica elongata;14200;laboratory/greenhouse/garden experiment;.53;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.53;.64;.42;;;;;;GERMANY;no Brassica napus;14206;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Brassica napus;14206;derivation from photos or drawings;.925;;1;BIOPOP April 2005;;1.1;.75;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica oleracea;14208;observation (like obvious taxonomical traits);1.2;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Brassica oleracea;14208;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brassica oleracea;14208;laboratory/greenhouse/garden experiment;.25;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.24;.29;.16;;;;;;GERMANY;no Bunias erucago;14224;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cakile maritima;14226;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cakile maritima;14226;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cakile maritima;14226;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Camelina alyssum;14231;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Camelina sativa;14234;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Camelina sativa;14234;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine amara;14239;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine amara;14239;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine amara;14239;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine hirsuta;14245;observation (like obvious taxonomical traits);.185;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine hirsuta;14245;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine hirsuta;14245;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine pratensis;14249;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine pentaphyllos;14251;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis parvula;14269;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis sagittata;14273;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis soyeri;14276;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aubrieta deltoidea;14284;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea vulgaris;14291;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Barbarea vulgaris;14291;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea vulgaris;14291;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Rich, T. C. G. (unknown e-mail address);;unknown Berteroa incana;14292;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aethionema saxatile;14330;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alyssum montanum;14366;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea stricta;14378;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Barbarea stricta;14378;laboratory/greenhouse/garden experiment;.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.36;.47;.19;;;;;;GERMANY;no Barbarea stricta;14378;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.8;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Barbarea stricta;14378;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bunias orientalis;14415;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Bunias orientalis;14415;laboratory/greenhouse/garden experiment;.83;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.83;.97;.69;;;;;;GERMANY;no Bunias orientalis;14415;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine bulbifera;14430;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.35;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine bulbifera;14430;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine bulbifera;14430;laboratory/greenhouse/garden experiment;.34;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.34;.43;.18;;;;;;GERMANY;no Cardamine bulbifera;14430;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;;.35;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cardamine enneaphyllos;14432;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium murorum;14443;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cardamine parviflora;14444;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cochlearia officinalis subsp. pyrenaica;14458;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cochlearia officinalis subsp. pyrenaica;14458;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crambe maritima;14463;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crambe maritima;14463;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crambe maritima;14463;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crambe maritima;14463;actual measurement (following LEDA data standards);.3;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.32;.36;.29;;;;;;SWEDEN;unknown Diplotaxis tenuifolia;14468;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Diplotaxis tenuifolia;14468;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Diplotaxis tenuifolia;14468;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erysimum repandum;14514;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hornungia petraea;14530;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hornungia petraea;14530;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hornungia petraea;14530;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Isatis tinctoria;14558;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Isatis tinctoria;14558;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Isatis tinctoria;14558;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lepidium densiflorum;14562;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lobularia maritima;14577;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lobularia maritima;14577;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lobularia maritima;14577;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Matthiola sinuata;14597;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Matthiola sinuata;14597;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myagrum perfoliatum;14601;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myagrum perfoliatum;14601;laboratory/greenhouse/garden experiment;.23;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.21;.31;.09;;;;;;GERMANY;no Nasturtium officinale;14602;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nasturtium officinale;14602;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.6;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nasturtium officinale;14602;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rapistrum perenne;14611;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rapistrum perenne;14611;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rorippa palustris;14626;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa palustris;14626;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rorippa palustris;14626;actual measurement (following LEDA data standards);.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.45;.54;.36;;;;;;GERMANY;no Rorippa palustris;14626;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.65;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium irio;14646;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sisymbrium irio;14646;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisymbrium irio;14646;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi montanum;14668;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thlaspi perfoliatum;14669;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi perfoliatum;14669;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi perfoliatum;14669;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium bifidum;14677;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium fuscocinereum;14682;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cannabis sativa;14695;derivation from photos or drawings;1.2;;1;BIOPOP April 2005;;2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Humulus lupulus;14697;observation (like obvious taxonomical traits);8;;1;ECOFLORA - database of the ecological flora of the british isles;;8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Humulus lupulus;14697;derivation from photos or drawings;3;;1;BIOPOP April 2005;;4;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Buxus sempervirens;14716;observation (like obvious taxonomical traits);3.5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Buxus sempervirens;14716;derivation from photos or drawings;2.15;;1;BIOPOP April 2005;;4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Buxus sempervirens;14716;unknown;.35;;1;BIOPOP April 2005;;.4;.3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Buxus sempervirens;14716;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Wahlenbergia hederacea;14756;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma spicatum;14784;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma spicatum;14784;actual measurement (following LEDA data standards);.2;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.2;.25;.15;;;;;;GERMANY;no Phyteuma betonicifolium;14797;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma hemisphaericum;14807;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma nigrum;14815;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma orbiculare;14818;field experiment;.338;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.338;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Phyteuma orbiculare;14818;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phyteuma ovatum;14822;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Legousia speculum-veneris;14838;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Legousia speculum-veneris;14838;laboratory/greenhouse/garden experiment;.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.19;.29;.14;;;;;;GERMANY;no Lobelia dortmanna;14841;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lobelia erinus;14842;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.25;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Jasione laevis;14870;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Jasione montana;14880;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Legousia hybrida;14896;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Legousia hybrida;14896;laboratory/greenhouse/garden experiment;.04;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.05;.08;.03;;;;;;GERMANY;no Campanula thyrsoides;14991;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula trachelium;15002;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.75;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula sibirica;15030;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula rotundifolia;15045;actual measurement (following LEDA data standards);.19;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.16;.2;.07;;;;;;NORWAY;unknown Campanula scheuchzeri;15061;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula rapunculoides;15082;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula rapunculus;15083;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.65;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula rhomboidalis;15089;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula patula;15092;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Campanula patula;15092;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Campanula patula;15092;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula persicifolia;15103;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula medium;15116;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.7;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula latifolia;15145;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula glomerata;15158;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Campanula glomerata;15158;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Campanula glomerata;15158;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula cervicaria;15224;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula cervicaria;15224;laboratory/greenhouse/garden experiment;.2;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.62;.17;;;;;;GERMANY;no Campanula cochlearifolia;15227;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula barbata;15243;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula baumgartenii;15244;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula bononiensis;15249;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.85;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Campanula alpina;15270;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adenophora lilifolia;15316;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Symphoricarpos albus;15329;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphoricarpos albus;15329;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Symphoricarpos albus;15329;unknown;1.5;;1;BIOPOP April 2005;;2;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Symphoricarpos albus;15329;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viburnum lantana;15334;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;6;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viburnum lantana;15334;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viburnum lantana;15334;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viburnum lantana;15334;unknown;4;;1;BIOPOP April 2005;;4;;;;;;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).;;unknown Viburnum lantana;15334;unknown;6;;1;BIOPOP April 2005;;6;;;;;;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).;;unknown Viburnum lantana;15334;unknown;3;;1;BIOPOP April 2005;;4;2;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Viburnum opulus;15336;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;4;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viburnum opulus;15336;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viburnum opulus;15336;derivation from photos or drawings;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viburnum opulus;15336;unknown;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Viburnum opulus;15336;unknown;4;;1;BIOPOP April 2005;;4;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Viburnum opulus;15336;unknown;4;;1;BIOPOP April 2005;;4;;;;;;Kollmann, J. (2002): Biological flora of the British Isles: Viburnum lantana L. und Viburnum opulus L. (V. lobatum Lam., Opulus vulgaris Borkh.).;;unknown Lonicera tatarica;15354;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera tatarica;15354;unknown;2;;1;BIOPOP April 2005;;3;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Lonicera xylosteum;15356;field experiment;1.992;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;1.992;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Lonicera xylosteum;15356;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lonicera xylosteum;15356;unknown;1.5;;1;BIOPOP April 2005;;2;1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Lonicera xylosteum;15356;unknown;3;;1;BIOPOP April 2005;;3;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Lonicera xylosteum;15356;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera xylosteum;15356;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sambucus ebulus;15361;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sambucus ebulus;15361;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sambucus ebulus;15361;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sambucus nigra;15363;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sambucus nigra;15363;unknown;3.5;;1;BIOPOP April 2005;;4;3;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Sambucus nigra;15363;unknown;5;;1;BIOPOP April 2005;;7;3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Sambucus nigra;15363;derivation from photos or drawings;5;;1;BIOPOP April 2005;;7;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sambucus racemosa;15364;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sambucus racemosa;15364;derivation from photos or drawings;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera caprifolium;15368;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Lonicera caprifolium;15368;derivation from photos or drawings;3.75;;1;BIOPOP April 2005;;4.5;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera nigra;15382;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera periclymenum;15385;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Lonicera periclymenum;15385;unknown;5;;1;BIOPOP April 2005;;5;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Lonicera periclymenum;15385;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;3;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leycesteria formosa;15392;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Linnaea borealis;15394;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Linnaea borealis;15394;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linnaea borealis;15394;actual measurement (following LEDA data standards);.03;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.03;.05;.02;;;;;;NORWAY;unknown Lonicera alpigena;15395;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lonicera caerulea;15404;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.3;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Buddleja davidii;15414;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;5;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Buddleja davidii;15414;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Buddleja davidii;15414;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Callitriche palustris;15420;derivation from photos or drawings;.0075;;1;BIOPOP April 2005;;.01;.005;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Callitriche palustris;15420;actual measurement (following LEDA data standards);.01;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.01;.01;.01;;;;;;GERMANY;no Minuartia rupestris;15481;derivation from photos or drawings;.095;;1;BIOPOP April 2005;;.15;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene chlorantha;15554;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petrorhagia saxifraga;15566;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina nivalis;15578;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;.03;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina nivalis;15578;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium semidecandrum;15651;observation (like obvious taxonomical traits);.105;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium semidecandrum;15651;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium semidecandrum;15651;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium uniflorum;15656;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.06;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corrigiola litoralis;15658;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Corrigiola litoralis;15658;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.4;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corrigiola litoralis;15658;laboratory/greenhouse/garden experiment;.02;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.02;.03;.02;;;;;;GERMANY;no Corrigiola litoralis;15658;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus caryophyllus;15721;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.7;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene otites;15749;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene otites;15749;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene otites;15749;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene dichotoma;15776;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene dichotoma;15776;laboratory/greenhouse/garden experiment;.38;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.4;.58;.25;;;;;;GERMANY;no Herniaria ciliolata;15803;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Herniaria ciliolata;15803;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Herniaria incana;15807;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium caesium;15820;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosoton aquaticum;15865;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosoton aquaticum;15865;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosoton aquaticum;15865;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina boydii;15952;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;.02;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Spergularia echinosperma;15958;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergularia segetalis;15967;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria crassifolia;15971;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria longifolia;15974;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gypsophila muralis;16075;derivation from photos or drawings;.12;;1;BIOPOP April 2005;;.2;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus armeria;16115;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus armeria;16115;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus armeria;16115;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus deltoides;16129;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus deltoides;16129;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.3;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus deltoides;16129;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia rubella;16155;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia rubella;16155;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia rubra;16156;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petrorhagia nanteuilii;16214;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Polycarpon tetraphyllum;16221;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Polycarpon tetraphyllum;16221;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina procumbens;16230;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sagina procumbens;16230;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina subulata;16231;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina subulata;16231;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina subulata;16231;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia stricta;16237;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia stricta;16237;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia stricta;16237;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia viscosa;16243;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Moehringia trinervia;16247;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Moehringia trinervia;16247;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Moehringia trinervia;16247;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene cretica;16289;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene cretica;16289;laboratory/greenhouse/garden experiment;.6;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.57;.68;.37;;;;;;GERMANY;no Silene gallica;16298;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene gallica;16298;laboratory/greenhouse/garden experiment;.36;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.36;.42;.3;;;;;;GERMANY;no Silene gallica;16298;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene gallica;16298;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Agrostemma githago;16318;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Agrostemma githago;16318;laboratory/greenhouse/garden experiment;1.04;21;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.06;1.38;.8;;;;;;GERMANY;no Agrostemma githago;16318;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.9;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostemma githago;16318;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene viscosa;16363;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium tomentosum;16387;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arenaria norvegica;16393;observation (like obvious taxonomical traits);.045;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arenaria norvegica;16393;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium brachypetalum s. brachypetalum;16412;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium brachypetalum s. brachypetalum;16412;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus plumarius;16429;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus plumarius;16429;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus plumarius;16429;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus superbus;16439;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus superbus;16439;laboratory/greenhouse/garden experiment;.41;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.39;.53;.26;;;;;;GERMANY;no Cucubalus baccifer;16443;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Cucubalus baccifer;16443;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus arenarius;16445;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus barbatus;16451;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus gratianopolitanus;16472;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus gratianopolitanus;16472;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus gratianopolitanus;16472;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium diffusum;16473;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium diffusum;16473;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium diffusum;16473;derivation from photos or drawings;.08;;1;BIOPOP April 2005;;.12;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium fontanum subsp. lucorum;16475;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia cherlerioides;16485;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia hybrida;16496;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia hybrida;16496;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia hybrida;16496;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gypsophila perfoliata;16510;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Herniaria glabra;16521;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Gaffney, J. E. (unknown e-mail address);;unknown Herniaria glabra;16521;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Gaffney, J. E. (unknown e-mail address);;unknown Herniaria glabra;16521;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Honkenya peploides;16523;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Honkenya peploides;16523;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Honkenya peploides;16523;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saponaria ocymoides;16543;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Moenchia erecta;16558;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Moenchia erecta;16558;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Moenchia erecta;16558;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia recurva;16581;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia recurva;16581;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia verna subsp. verna;16586;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia verna subsp. verna;16586;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lychnis flos-cuculi;16589;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lychnis flos-cuculi;16589;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lychnis viscaria;16593;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lychnis viscaria;16593;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia austriaca;16597;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.1;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene italica s. italica;16601;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Silene acaulis s. acaulis;16606;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene acaulis s. acaulis;16606;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene conica;16631;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene conica;16631;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene conica;16631;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Petrorhagia prolifera;16636;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Petrorhagia prolifera;16636;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina apetala subsp. erecta;16642;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina nodosa;16644;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina nodosa;16644;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina nodosa;16644;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina saginoides;16651;observation (like obvious taxonomical traits);.045;;1;ECOFLORA - database of the ecological flora of the british isles;;.07;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina saginoides;16651;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina saginoides;16651;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene vulgaris;16657;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene vulgaris;16657;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene vulgaris;16657;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene nutans;16673;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene nutans;16673;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene nutans;16673;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergula arvensis;16731;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergula arvensis;16731;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergula arvensis;16731;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergula pentandra;16733;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergularia media;16741;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergularia media;16741;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Ratter, J. A.(1986): no title given, publication in Notes from the Royal Botanic Garden Edinburgh issue: 43 pages: 283-297 [43];;unknown Spergularia media;16741;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria holostea;16753;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria holostea;16753;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.2;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria holostea;16753;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria media;16755;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Stellaria media;16755;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria media;16755;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria neglecta;16759;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria neglecta;16759;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.75;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria neglecta;16759;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria nemorum;16761;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium maculatum;16770;derivation from photos or drawings;.41;;1;BIOPOP April 2005;;.62;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Cerastium arvense;16782;observation (like obvious taxonomical traits);.17;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium arvense;16782;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium arvense;16782;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium fontanum;16798;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.32;.08;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Cerastium fontanum;16798;actual measurement (following LEDA data standards);.02;2;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.02;;;;;;NORWAY;unknown Arenaria ciliata;16814;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arenaria ciliata;16814;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arenaria serpyllifolia;16833;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.3;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium pumilum;16863;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium pumilum;16863;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dianthus carthusianorum;16880;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium alpinum;16895;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium alpinum;16895;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus seguieri;16914;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dianthus sylvestris;16923;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gypsophila fastigiata;16936;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gypsophila paniculata;16941;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.9;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Herniaria hirsuta;17001;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Herniaria hirsuta;17001;laboratory/greenhouse/garden experiment;.07;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.07;.09;.05;;;;;;GERMANY;no Holosteum umbellatum;17010;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Holosteum umbellatum;17010;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Holosteum umbellatum;17010;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagina apetala;17028;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina apetala;17028;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sagina maritima;17033;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sagina maritima;17033;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia setacea;17043;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Minuartia verna;17060;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Moehringia ciliata;17069;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scleranthus annuus s. annuus;17085;observation (like obvious taxonomical traits);.14;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scleranthus annuus s. annuus;17085;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scleranthus annuus;17086;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.2;.02;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Scleranthus annuus;17086;laboratory/greenhouse/garden experiment;.07;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.07;.08;.04;;;;;;GERMANY;no Scleranthus perennis;17092;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Scleranthus perennis;17092;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene acaulis;17102;actual measurement;.028;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.028;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Silene acaulis;17102;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene acaulis;17102;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.04;.02;;;;;;NORWAY;unknown Silene armeria;17110;derivation from photos or drawings;.31;;1;BIOPOP April 2005;;.5;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gypsophila repens;17131;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gypsophila scorzonerifolia Ser.;17132;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.6;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Illecebrum verticillatum;17139;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Illecebrum verticillatum;17139;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Illecebrum verticillatum;17139;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium cerastoides;17207;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Cerastium cerastoides;17207;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium cerastoides;17207;actual measurement (following LEDA data standards);.02;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.02;.01;;;;;;NORWAY;unknown Cerastium dubium;17210;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene italica subsp. nemoralis;17244;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.9;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene noctiflora;17252;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene noctiflora;17252;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.3;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene noctiflora;17252;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene tatarica;17273;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene latifolia;17283;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene latifolia;17283;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria pallida;17302;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Stellaria pallida;17302;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria palustris;17304;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria palustris;17304;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria palustris;17304;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium glomeratum;17356;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium glomeratum;17356;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.25;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium glomeratum;17356;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium latifolium;17367;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lychnis alpina;17455;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lychnis alpina;17455;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia sedoides;17489;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia sedoides;17489;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Minuartia sedoides;17489;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saponaria officinalis;17539;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saponaria officinalis;17539;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saponaria officinalis;17539;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scleranthus annuus subsp. polycarpos;17542;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scleranthus annuus s. verticillatus;17543;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene dioica;17578;unknown;.8;;1;BIOPOP April 2005;.8;;;;;;;Baker, H. G. (1947): Biological flora of the British Isles: Melandrium diocum (L. emend.) Coss. & Germ.;;unknown Silene dioica;17578;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene dioica;17578;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene dioica;17578;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Silene dioica;17578;actual measurement;.591;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.591;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Silene linicola;17593;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene linicola;17593;laboratory/greenhouse/garden experiment;.51;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.5;.58;.4;;;;;;GERMANY;no Silene pusilla;17617;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene rupestris;17622;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Silene uniflora;17634;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Spergula morisonii;17638;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergularia marina;17645;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergularia marina;17645;laboratory/greenhouse/garden experiment;.12;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.16;.08;;;;;;GERMANY;no Spergularia marina;17645;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergularia rubra;17650;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergularia rubra;17650;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergularia rubra;17650;derivation from photos or drawings;.12;;1;BIOPOP April 2005;;.2;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spergularia rupicola;17651;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spergularia rupicola;17651;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria uliginosa;17654;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria uliginosa;17654;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stellaria uliginosa;17654;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria graminea;17658;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria graminea;17658;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stellaria graminea;17658;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex oblongifolia;17673;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex patula;17675;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex patula;17675;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex praecox;17678;observation (like obvious taxonomical traits);.065;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex praecox;17678;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex praecox;17678;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Stewart, A.[1st editor](1994): Scarce Plants in Britain 1994 Joint Nature Conservation Committee, Peterborough [];;unknown Atriplex rosea;17679;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex rosea;17679;laboratory/greenhouse/garden experiment;.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.5;.25;;;;;;GERMANY;no Atriplex tatarica;17681;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex tatarica;17681;laboratory/greenhouse/garden experiment;.25;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.31;.53;.15;;;;;;GERMANY;no Chenopodium strictum;17718;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium ambrosioides;17719;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium ambrosioides;17719;laboratory/greenhouse/garden experiment;.57;22;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.6;.75;.51;;;;;;GERMANY;no Chenopodium bonus-henricus;17724;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium bonus-henricus;17724;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium bonus-henricus;17724;actual measurement (following LEDA data standards);.45;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.45;.6;.3;;;;;;GERMANY;no Chenopodium bonus-henricus;17724;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium chenopodioides;17727;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium chenopodioides;17727;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium chenopodioides;17727;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium rubrum;17729;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Williams, J. T. (1969): Biological Flora of the British Isles. Chenopodium rubrum;;unknown Chenopodium rubrum;17729;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.7;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium rubrum;17729;actual measurement (following LEDA data standards);.9;;1;BIOPOP April 2005;.9;;;;;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM;unknown Chenopodium rubrum;17729;actual measurement (following LEDA data standards);1.5;;1;BIOPOP April 2005;;1.5;;;;;;Salisbury, E. J. (1942): The Reproductive Capacity of Plants, G. Bell Publishers, London;UNITED KINGDOM;unknown Chenopodium botrys;17732;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex calotheca;17758;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex calotheca;17758;laboratory/greenhouse/garden experiment;.8;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.81;.95;.64;;;;;;GERMANY;no Atriplex glabriuscula;17760;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex glabriuscula;17760;laboratory/greenhouse/garden experiment;.69;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.72;.9;.62;;;;;;GERMANY;no Atriplex glabriuscula;17760;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex hortensis;17771;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex laciniata;17773;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex laciniata;17773;laboratory/greenhouse/garden experiment;.98;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1;1.16;.86;;;;;;GERMANY;no Atriplex laciniata;17773;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex littoralis;17778;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex littoralis;17778;laboratory/greenhouse/garden experiment;.81;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.83;1.17;.4;;;;;;GERMANY;no Atriplex littoralis;17778;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex longipes;17780;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex longipes;17780;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Corispermum marschallii;17784;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Halimione pedunculata;17799;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Halimione pedunculata;17799;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bassia hirsuta;17801;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Beta vulgaris;17819;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Beta vulgaris;17819;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium album;17842;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Williams, J. T.(1963): no title given, publication in Journal of Ecology issue: 51 pages: 711-725 [51];;unknown Chenopodium album;17842;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium album;17842;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Williams, J. T.(1963): no title given, publication in Journal of Ecology issue: 51 pages: 711-725 [51];;unknown Chenopodium ficifolium;17866;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium ficifolium;17866;laboratory/greenhouse/garden experiment;.66;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.66;.9;.42;;;;;;GERMANY;no Chenopodium ficifolium;17866;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium ficifolium;17866;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium glaucum;17874;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium glaucum;17874;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium glaucum;17874;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium hybridum;17875;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium hybridum;17875;actual measurement (following LEDA data standards);.4;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.4;.52;.28;;;;;;GERMANY;no Chenopodium hybridum;17875;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium hybridum;17875;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium murale;17880;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium murale;17880;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium opulifolium;17881;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium opulifolium;17881;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium opulifolium;17881;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium polyspermum;17882;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium polyspermum;17882;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium suecicum;17888;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium urbicum;17891;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium urbicum;17891;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium urbicum;17891;laboratory/greenhouse/garden experiment;.27;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;.36;.17;;;;;;GERMANY;no Chenopodium urbicum;17891;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium vulvaria;17892;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.65;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium vulvaria;17892;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium vulvaria;17892;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corispermum intermedium;17909;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Halimione portulacoides;17931;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Halimione portulacoides;17931;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Suaeda maritima;17972;observation (like obvious taxonomical traits);.185;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Suaeda maritima;17972;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Suaeda maritima;17972;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Suaeda vera;17986;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Suaeda vera;17986;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Carpinus betulus;17990;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Carpinus betulus;17990;unknown;15.5;;1;BIOPOP April 2005;;25;6;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Carpinus betulus;17990;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;;6;;;;;Hegi, G.(1981): Illustrierte Flora von Mitteleuropa, Band III, Angiospermae, Dicotyledones 1, Tiel 1, Parey, Berlin. [];;unknown Carpinus betulus;17990;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polycnemum arvense;17999;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polycnemum majus;18001;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polycnemum verrucosum;18002;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salicornia dolichostachya;18004;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia dolichostachya;18004;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia europaea;18012;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia europaea;18012;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salicornia europaea;18012;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia fragilis;18015;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia fragilis;18015;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia nitens;18018;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia nitens;18018;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia obscura;18019;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia obscura;18019;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia pusilla;18025;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia ramosissima;18027;observation (like obvious taxonomical traits);.215;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salicornia ramosissima;18027;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salsola kali;18036;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salsola kali;18036;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spinacia oleracea;18064;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corylus avellana;18083;observation (like obvious taxonomical traits);3.5;;1;ECOFLORA - database of the ecological flora of the british isles;;6;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Corylus avellana;18083;derivation from photos or drawings;4;;1;BIOPOP April 2005;;6;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corylus avellana;18083;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Corylus colurna;18084;derivation from photos or drawings;19;;1;BIOPOP April 2005;;30;8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corylus maxima;18085;derivation from photos or drawings;4;;1;BIOPOP April 2005;;5;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crassula aquatica;18112;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Crassula tillaea;18116;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crassula tillaea;18116;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crassula tillaea;18116;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhodiola rosea;18168;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum acre;18178;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum acre;18178;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum acre;18178;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum album;18182;observation (like obvious taxonomical traits);.11;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum album;18182;derivation from photos or drawings;.105;;1;BIOPOP April 2005;;.15;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum album;18182;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum alpestre;18184;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum anglicum;18189;observation (like obvious taxonomical traits);.035;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum anglicum;18189;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum annuum;18195;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum atratum;18202;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum cepaea;18212;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum cepaea;18212;laboratory/greenhouse/garden experiment;.12;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.13;.24;.05;;;;;;GERMANY;no Sedum dasyphyllum;18216;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.07;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum rupestre;18224;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum rupestre;18224;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum rupestre;18224;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum hispanicum;18232;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum ochroleucum;18248;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum rubens;18260;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum rubens;18260;laboratory/greenhouse/garden experiment;.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.04;.09;.03;;;;;;GERMANY;no Sedum sexangulare;18275;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sedum sexangulare;18275;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum spurium;18278;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum spurium;18278;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum telephium s. maximum;18293;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum villosum;18303;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sedum villosum;18303;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum villosum;18303;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sempervivum arachnoideum;18309;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sempervivum tectorum;18351;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Umbilicus rupestris;18389;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Umbilicus rupestris;18389;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euonymus europaeus;18402;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;6;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euonymus europaeus;18402;unknown;6;;1;BIOPOP April 2005;;6;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Euonymus europaeus;18402;unknown;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Euonymus europaeus;18402;unknown;4;;1;BIOPOP April 2005;;6;2;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Euonymus europaeus;18402;derivation from photos or drawings;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euonymus europaeus;18402;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euonymus latifolius;18405;derivation from photos or drawings;3.75;;1;BIOPOP April 2005;;6;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cornus alba;18424;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cornus alba;18424;unknown;2;;1;BIOPOP April 2005;;3;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Cornus mas;18428;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;5;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cornus sanguinea;18429;observation (like obvious taxonomical traits);2.125;;1;ECOFLORA - database of the ecological flora of the british isles;;4;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cornus sanguinea;18429;unknown;3.5;;1;BIOPOP April 2005;;5;2;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Cornus sanguinea;18429;unknown;3;;1;BIOPOP April 2005;;4;2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Cornus sanguinea;18429;derivation from photos or drawings;3;;1;BIOPOP April 2005;;5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cornus sanguinea;18429;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cornus sericea;18436;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Cornus suecica;18440;observation (like obvious taxonomical traits);.13;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cornus suecica;18440;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cornus suecica;18440;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Echinocystis lobata;18465;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;6;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bryonia alba;18474;derivation from photos or drawings;3;;1;BIOPOP April 2005;;4;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bryonia cretica s. dioica;18478;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Bryonia cretica s. dioica;18478;derivation from photos or drawings;3;;1;BIOPOP April 2005;;4;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cucumis sativus;18481;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;3;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cucurbita maxima;18482;derivation from photos or drawings;7;;1;BIOPOP April 2005;;10;4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cucurbita pepo;18484;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;8;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tuberaria guttata;18499;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Tuberaria guttata;18499;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tuberaria guttata;18499;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helianthemum nummularium;18594;field experiment;.106;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.106;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Helianthemum nummularium;18594;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helianthemum nummularium;18594;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helianthemum nummularium;18594;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helianthemum oelandicum s. alpestre;18606;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helianthemum canum;18656;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helianthemum apenninum;18679;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helianthemum apenninum;18679;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helianthemum apenninum;18679;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fumana procumbens;18723;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cuscuta epithymum;18799;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Convolvulus arvensis;18911;field experiment;.038;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.038;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Convolvulus arvensis;18911;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Convolvulus arvensis;18911;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Convolvulus arvensis;18911;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Convolvulus arvensis;18911;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London [];;unknown Calystegia sepium;18945;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Grime, J. P.(1988): Comparative Plant Ecology, Unwin Hyman, London [];;unknown Calystegia sepium;18945;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calystegia sepium;18945;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calystegia sepium;18945;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calystegia silvatica;18953;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calystegia soldanella;18962;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calystegia soldanella;18962;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calystegia soldanella;18962;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Drosera anglica;18994;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Drosera anglica;18994;actual measurement (following LEDA data standards);.04;27;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.03;.06;.01;;;;;;NORWAY;unknown Drosera intermedia;18996;observation (like obvious taxonomical traits);.025;;1;ECOFLORA - database of the ecological flora of the british isles;;.03;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Drosera intermedia;18996;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Drosera intermedia;18996;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Drosera rotundifolia;18999;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Drosera rotundifolia;18999;actual measurement (following LEDA data standards);.06;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.06;.09;.02;;;;;;GERMANY;no Drosera rotundifolia;18999;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Drosera rotundifolia;18999;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.18;;;;;;Crowder, A. A.(1990): no title given, publication in Journal of Ecology issue: 78 pages: 233-267 [78];;unknown Hippophae rhamnoides;19002;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hippophae rhamnoides;19002;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hippophae rhamnoides;19002;derivation from photos or drawings;5;;1;BIOPOP April 2005;;5;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elaeagnus angustifolia;19005;derivation from photos or drawings;3.65;;1;BIOPOP April 2005;;7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elaeagnus commutata;19006;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;4;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elatine hydropiper;19010;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Elatine hydropiper;19010;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Elatine hydropiper;19010;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elatine triandra;19013;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elatine alsinastrum;19030;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.5;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elatine hexandra;19033;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Elatine hexandra;19033;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elatine hexandra;19033;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Knautia arvensis;19058;observation (like obvious taxonomical traits);.625;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Knautia arvensis;19058;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Knautia arvensis;19058;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scabiosa atropurpurea;19064;field experiment;.35;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.35;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Scabiosa atropurpurea;19064;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scabiosa atropurpurea;19064;laboratory/greenhouse/garden experiment;.4;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.42;.75;.18;;;;;;GERMANY;no Dipsacus strigosus;19104;laboratory/greenhouse/garden experiment;1.42;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.31;1.61;.94;;;;;;GERMANY;no Dipsacus sativus;19175;derivation from photos or drawings;1.075;;1;BIOPOP April 2005;;1.3;.85;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Succisa pratensis;19186;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Succisa pratensis;19186;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Succisa pratensis;19186;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scabiosa ochroleuca;19228;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dipsacus pilosus;19256;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dipsacus pilosus;19256;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dipsacus pilosus;19256;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dipsacus laciniatus;19264;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;1.1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium schmidtii;19273;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scabiosa lucida;19283;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Succisella inflexa;19319;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Knautia dipsacifolia;19339;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Knautia drymeia;19345;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dipsacus fullonum;19359;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dipsacus fullonum;19359;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dipsacus fullonum;19359;derivation from photos or drawings;1.2;;1;BIOPOP April 2005;;1.8;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scabiosa columbaria;19381;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scabiosa columbaria;19381;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scabiosa columbaria;19381;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scabiosa columbaria s. columbaria;19382;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.6;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Scabiosa columbaria s. columbaria;19382;derivation from photos or drawings;.265;;1;BIOPOP April 2005;;.38;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Scabiosa canescens;19427;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium vitis-idaea;19439;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Ritchie, J. C. (1955): no title given, publication in Journal of Ecology issue: 43 pages: 701-708 [43];;unknown Vaccinium vitis-idaea;19439;unknown;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Vaccinium vitis-idaea;19439;unknown;.05;;1;BIOPOP April 2005;;;.05;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Vaccinium vitis-idaea;19439;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vaccinium vitis-idaea;19439;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);.06;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.11;.04;;;;;;NORWAY;unknown Vaccinium vitis-idaea;19439;actual measurement (following LEDA data standards);.13;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;.14;.1;;;;;;NORWAY;unknown Empetrum nigrum;19449;actual measurement (following LEDA data standards);.1;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.2;.05;;;;;;NORWAY;unknown Empetrum nigrum;19449;actual measurement (following LEDA data standards);.05;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.07;.03;;;;;;NORWAY;unknown Empetrum nigrum;19449;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Empetrum nigrum s. hermaphroditum;19451;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhododendron ponticum;19459;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rhododendron ponticum;19459;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Cross, J. R.(1975): no title given, publication in Journal of Ecology issue: 63 pages: 345-364 [63];;unknown Rhodothamnus chamaecistus;19464;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium corymbosum;19467;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Vaccinium macrocarpon;19470;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium microcarpum;19473;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Vaccinium microcarpum;19473;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium myrtillus;19475;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vaccinium myrtillus;19475;unknown;.5;;1;BIOPOP April 2005;;.5;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Vaccinium myrtillus;19475;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Ritchie, J. C. (1958): no title given, publication in Journal of Ecology issue: 44 pages: 291-299 [44];;unknown Vaccinium myrtillus;19475;unknown;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Ritchie, J. C. (1956): Biological flora of the British Isles: Vaccinium myrtillus L.;;unknown Vaccinium myrtillus;19475;unknown;.75;;1;BIOPOP April 2005;;.9;.6;;;;;Ritchie, J. C. (1956): Biological flora of the British Isles: Vaccinium myrtillus L.;;unknown Vaccinium myrtillus;19475;unknown;.25;;1;BIOPOP April 2005;.25;;;;;;;Ritchie, J. C. (1956): Biological flora of the British Isles: Vaccinium myrtillus L.;;unknown Vaccinium myrtillus;19475;unknown;.05;;1;BIOPOP April 2005;;.05;;;;;;Ritchie, J. C. (1956): Biological flora of the British Isles: Vaccinium myrtillus L.;;unknown Vaccinium myrtillus;19475;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);.1;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;.15;.05;;;;;;NORWAY;unknown Vaccinium myrtillus;19475;actual measurement (following LEDA data standards);.11;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.1;.12;.06;;;;;;NORWAY;unknown Vaccinium oxycoccos;19476;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Vaccinium oxycoccos;19476;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium uliginosum;19479;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);.13;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.16;.04;;;;;;NORWAY;unknown Vaccinium uliginosum;19479;actual measurement (following LEDA data standards);.09;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.17;.06;;;;;;NORWAY;unknown Erica tetralix;19489;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica tetralix;19489;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erica vagans;19491;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica vagans;19491;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gaultheria shallon;19494;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Kalmia angustifolia;19496;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Kalmia angustifolia;19496;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kalmia polifolia;19497;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Ledum palustre;19499;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ledum palustre;19499;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Loiseleuria procumbens;19506;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Loiseleuria procumbens;19506;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Loiseleuria procumbens;19506;actual measurement (following LEDA data standards);.03;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.04;.01;;;;;;NORWAY;unknown Phyllodoce caerulea;19512;actual measurement (following LEDA data standards);.09;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.13;.04;;;;;;NORWAY;unknown Phyllodoce caerulea;19512;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Phyllodoce caerulea;19512;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Coker, P. D.(1973): no title given, publication in Journal of Ecology issue: 61 pages: 901-913 [61];;unknown Rhododendron ferrugineum;19514;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhododendron hirsutum;19516;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cassiope hypnoides;19524;actual measurement (following LEDA data standards);.01;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.01;.01;;;;;;NORWAY;unknown Cassiope hypnoides;19524;actual measurement (following LEDA data standards);.01;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.01;.02;.01;;;;;;NORWAY;unknown Daboecia cantabrica;19536;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica ciliaris;19544;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica cinerea;19545;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica cinerea;19545;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erica erigena;19546;observation (like obvious taxonomical traits);1.25;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica erigena;19546;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica herbacea;19550;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erica lusitanica;19553;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;3;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Erica lusitanica;19553;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Erica mackaiana;19554;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erica mackaiana;19554;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Webb, D. A.(1955): no title given, publication in Journal of Ecology issue: 43 pages: 319-330 [43];;unknown Andromeda polifolia;19573;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Andromeda polifolia;19573;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arbutus unedo;19577;observation (like obvious taxonomical traits);12;;1;ECOFLORA - database of the ecological flora of the british isles;;12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Arctostaphylos alpinus;19579;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Gimingham, C. H. (unknown e-mail address);;unknown Arctostaphylos alpinus;19579;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctostaphylos uva-ursi;19582;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.04;;;;;Gimingham, C. H. (unknown e-mail address);;unknown Arctostaphylos uva-ursi;19582;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arctostaphylos uva-ursi;19582;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Gimingham, C. H. (unknown e-mail address);;unknown Calluna vulgaris;19587;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Gimingham, C. H. (unknown e-mail address);;unknown Calluna vulgaris;19587;unknown;.6;;1;BIOPOP April 2005;;1;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Calluna vulgaris;19587;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calluna vulgaris;19587;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calluna vulgaris;19587;unknown;2.2;;1;BIOPOP April 2005;;2.2;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Diapensia lapponica;19591;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Diapensia lapponica;19591;actual measurement (following LEDA data standards);.03;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.04;.02;;;;;;NORWAY;unknown Vicia sativa s. nigra;19593;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium rubens;19602;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ulex gallii;19611;observation (like obvious taxonomical traits);1.05;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulex gallii;19611;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium micranthum;19621;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium micranthum;19621;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium micranthum;19621;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia cassubica;19692;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Genista anglica;19775;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista anglica;19775;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista anglica;19775;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Medicago arabica;19824;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago arabica;19824;laboratory/greenhouse/garden experiment;.1;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.2;.04;;;;;;GERMANY;no Medicago arabica;19824;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus heterophyllus;19830;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus tuberosus;19845;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus vernus;19847;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus vernus;19847;laboratory/greenhouse/garden experiment;.21;23;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.23;.4;.12;;;;;;GERMANY;no Lotus angustissimus;19855;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus angustissimus;19855;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago sativa s. falcata;19911;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium arvense;19943;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium arvense;19943;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium arvense;19943;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ornithopus perpusillus;19964;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ornithopus perpusillus;19964;laboratory/greenhouse/garden experiment;.33;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.31;.38;.2;;;;;;GERMANY;no Ornithopus perpusillus;19964;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithopus perpusillus;19964;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mercurialis perennis;19987;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mercurialis perennis;19987;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mercurialis perennis;19987;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia villosa;20008;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mercurialis annua;20019;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mercurialis annua;20019;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mercurialis annua;20019;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mercurialis ovata;20023;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia serrulata;20055;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia serrulata;20055;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia serrulata;20055;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia salicifolia;20075;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia segetalis;20079;laboratory/greenhouse/garden experiment;.12;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.13;.25;.04;;;;;;GERMANY;no Euphorbia seguierana;20085;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia platyphyllos;20091;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia platyphyllos;20091;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia platyphyllos;20091;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia portlandica;20094;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia portlandica;20094;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia peplus;20109;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia peplus;20109;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia peplus;20109;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia palustris;20139;derivation from photos or drawings;.975;;1;BIOPOP April 2005;;1.45;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia paralias;20141;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia paralias;20141;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia peplis;20143;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Euphorbia lathyris;20168;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia lucida;20175;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.3;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia helioscopia;20189;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia helioscopia;20189;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia helioscopia;20189;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia humifusa;20193;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.15;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia hyberna;20195;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia hyberna;20195;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia exigua;20206;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia exigua;20206;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia exigua;20206;derivation from photos or drawings;.13;;1;BIOPOP April 2005;;.2;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia falcata;20208;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia esula;20227;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia esula;20227;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia esula subsp. tommasiniana;20237;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.8;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia cyparissias;20238;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia cyparissias;20238;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia cyparissias;20238;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia dulcis;20247;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia dulcis;20247;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia dulcis;20247;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia epithymoides;20254;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia brittingeri;20281;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia amygdaloides;20294;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphorbia amygdaloides;20294;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphorbia amygdaloides;20294;laboratory/greenhouse/garden experiment;.17;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.17;.26;.08;;;;;;GERMANY;no Euphorbia amygdaloides;20294;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia ervilia;20343;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia ervilia;20343;laboratory/greenhouse/garden experiment;.37;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.36;.48;.25;;;;;;GERMANY;no Vicia hirsuta;20346;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia hirsuta;20346;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia hirsuta;20346;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia sepium;20357;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia sepium;20357;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia sepium;20357;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia sylvatica;20360;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia sylvatica;20360;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia sylvatica;20360;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium spadiceum;20366;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium strictum;20370;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium strictum;20370;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium suffocatum;20371;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium suffocatum;20371;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus arenarius;20420;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus australis;20423;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamaecytisus ratisbonensis;20494;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus laevigatus;20500;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus montanus;20503;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus montanus;20503;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus montanus;20503;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus odoratus;20506;derivation from photos or drawings;1.2;;1;BIOPOP April 2005;;1.6;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus odoratus;20506;laboratory/greenhouse/garden experiment;.4;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.44;.7;.31;;;;;;GERMANY;no Gleditsia triacanthos;20520;derivation from photos or drawings;30;;1;BIOPOP April 2005;;40;20;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dorycnium pentaphyllum s. herbaceum;20546;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melilotus indica;20556;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus nootkatensis;20589;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Medicago lupulina;20595;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago lupulina;20595;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago lupulina;20595;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ononis repens;20645;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ononis repens;20645;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ononis repens;20645;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago polymorpha;20650;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago polymorpha;20650;laboratory/greenhouse/garden experiment;.8;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.8;.8;.8;;;;;;GERMANY;no Medicago polymorpha;20650;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago polymorpha;20650;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium resupinatum;20696;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium resupinatum;20696;laboratory/greenhouse/garden experiment;.08;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.09;.16;.04;;;;;;GERMANY;no Amorpha fruticosa;20749;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;4;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia dalmatica;20751;derivation from photos or drawings;.41;;1;BIOPOP April 2005;;.55;.27;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Vicia faba;20755;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia orobus;20763;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia orobus;20763;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia orobus;20763;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Caragana arborescens;20788;derivation from photos or drawings;4;;1;BIOPOP April 2005;;6;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Caragana arborescens;20788;unknown;3;;1;BIOPOP April 2005;;4;2;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Astragalus penduliflorus;20875;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus sativus;20895;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus sylvestris;20898;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus sylvestris;20898;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus sylvestris;20898;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista germanica;20906;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Genista pilosa;20915;field experiment;.295;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.295;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Genista pilosa;20915;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista pilosa;20915;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Genista pilosa;20915;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus tenuis;20976;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Laburnum anagyroides;20994;observation (like obvious taxonomical traits);7;;1;ECOFLORA - database of the ecological flora of the british isles;;7;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Laburnum anagyroides;20994;unknown;8;;1;BIOPOP April 2005;;9;7;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Laburnum anagyroides;20994;unknown;4.5;;1;BIOPOP April 2005;;6;3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Laburnum anagyroides;20994;derivation from photos or drawings;8;;1;BIOPOP April 2005;;8;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus latifolius;21002;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium campestre;21008;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium campestre;21008;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithopus pinnatus;21023;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ornithopus pinnatus;21023;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxytropis halleri;21029;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Trifolium striatum;21076;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium striatum;21076;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium striatum;21076;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium subterraneum;21077;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium subterraneum;21077;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulex europaeus;21090;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulex europaeus;21090;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ulex europaeus;21090;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulex minor;21091;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulex minor;21091;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium dubium;21100;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium dubium;21100;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium glomeratum;21105;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium glomeratum;21105;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium hybridum;21107;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium hybridum;21107;laboratory/greenhouse/garden experiment;.5;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.47;.51;.36;;;;;;GERMANY;no Trifolium hybridum;21107;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium hybridum;21107;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium alpestre;21116;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium bocconei;21123;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium bocconei;21123;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Wisteria sinensis;21151;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Wisteria sinensis;21151;unknown;20;;1;BIOPOP April 2005;;20;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Vicia bithynica;21154;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia bithynica;21154;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia lathyroides;21160;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia lathyroides;21160;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia lathyroides;21160;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia lutea;21163;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia lutea;21163;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia lutea;21163;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium ornithopodioides;21173;observation (like obvious taxonomical traits);.11;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium ornithopodioides;21173;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus cicer;21198;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dorycnium pentaphyllum s. germanicum;21241;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus aphaca;21294;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus aphaca;21294;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galega officinalis;21307;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronilla vaginalis;21349;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.08;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus pratensis;21355;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus pratensis;21355;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus pratensis;21355;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus nissolia;21360;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus nissolia;21360;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus nissolia;21360;laboratory/greenhouse/garden experiment;.2;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.2;.2;.2;;;;;;GERMANY;no Lathyrus nissolia;21360;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lotus alpinus;21376;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Genista tinctoria;21390;observation (like obvious taxonomical traits);1.05;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista tinctoria;21390;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Genista tinctoria;21390;unknown;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Genista tinctoria;21390;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hedysarum hedysaroides;21399;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melilotus alba;21420;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melilotus alba;21420;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melilotus alba;21420;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1.1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melilotus dentata;21422;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lotus pedunculatus;21444;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus pedunculatus;21444;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus uliginosus;21448;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus angustifolius;21449;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus arboreus;21451;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxytropis jacquinii;21474;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.1;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oxytropis pilosa;21479;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oxytropis campestris;21486;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Ononis arvensis;21509;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.6;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trigonella foenum-graecum;21525;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trigonella foenum-graecum;21525;laboratory/greenhouse/garden experiment;.33;22;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.33;.42;.23;;;;;;GERMANY;no Trifolium montanum;21547;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium montanum;21547;actual measurement (following LEDA data standards);.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.3;.3;;;;;;GERMANY;no Trifolium occidentale;21553;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Tetragonolobus maritimus;21564;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Tetragonolobus maritimus;21564;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium incarnatum;21571;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium incarnatum;21571;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium incarnatum;21571;laboratory/greenhouse/garden experiment;.3;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;.41;.1;;;;;;GERMANY;no Vicia dumetorum;21606;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia grandiflora;21610;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium retusum;21630;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium scabrum;21632;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium scabrum;21632;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trigonella caerulea Ser.;21636;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthyllis vulneraria;21660;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus alpinus;21673;actual measurement;.118;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.118;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Astragalus alpinus;21673;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus alpinus;21673;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus alpinus;21673;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus exscapus;21682;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus frigidus;21746;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cytisus scoparius;21757;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cytisus scoparius;21757;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cytisus scoparius;21757;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dorycnium hirsutum Ser.;21762;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamaespartium sagittale;21791;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Colutea arborescens;21799;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Colutea arborescens;21799;derivation from photos or drawings;3.75;;1;BIOPOP April 2005;;5;2.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Colutea arborescens;21799;unknown;3.75;;1;BIOPOP April 2005;;5;2.5;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Coronilla coronata;21803;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronilla varia;21810;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Coronilla varia;21810;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coronilla varia;21810;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus niger;21815;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus niger;21815;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus niger;21815;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus palustris;21816;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus palustris;21816;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus palustris;21816;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus pannonicus;21817;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lembotropis nigricans;21830;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Lembotropis nigricans;21830;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1.1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lens culinaris;21834;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hippocrepis comosa;21868;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hippocrepis comosa;21868;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hippocrepis comosa;21868;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Onobrychis viciifolia;21874;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Onobrychis viciifolia;21874;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Onobrychis viciifolia;21874;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Onobrychis arenaria;21876;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lotus corniculatus;21886;field experiment;.1;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.1;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Lotus corniculatus;21886;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus corniculatus;21886;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus corniculatus;21886;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lotus corniculatus;21886;unknown;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jones, D. A. (1986): Biological flora of the British Isles: Lotus corniculatus L.;;unknown Lotus corniculatus;21886;unknown;1.7;;1;BIOPOP April 2005;;1.7;;;;;;Jones, D. A. (1986): Biological flora of the British Isles: Lotus corniculatus L.;;unknown Lotus subbiflorus;21897;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lotus subbiflorus;21897;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lupinus albus;21901;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus albus;21901;laboratory/greenhouse/garden experiment;.47;21;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.47;.59;.3;;;;;;GERMANY;no Medicago minima;21911;field experiment;.05;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.05;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Medicago minima;21911;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Medicago minima;21911;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Medicago minima;21911;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus bauhinii;21919;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus hirsutus;21923;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lathyrus japonicus;21925;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus japonicus;21925;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathyrus japonicus;21925;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Onobrychis montana;21940;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ononis reclinata;21955;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ononis reclinata;21955;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ononis natrix;21956;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ononis spinosa;21958;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ononis spinosa;21958;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium aureum;21992;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Trifolium aureum;21992;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium aureum;21992;laboratory/greenhouse/garden experiment;.37;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.37;.44;.29;;;;;;GERMANY;no Trifolium badium;21993;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium fragiferum;22005;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium fragiferum;22005;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithopus sativus;22019;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phaseolus vulgaris;22039;derivation from photos or drawings;2.15;;1;BIOPOP April 2005;;4;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phaseolus vulgaris;22039;laboratory/greenhouse/garden experiment;.31;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.37;.21;;;;;;GERMANY;no Pisum sativum;22040;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Robinia pseudacacia;22045;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;20;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Robinia pseudacacia;22045;unknown;17.5;;1;BIOPOP April 2005;;20;15;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Robinia pseudacacia;22045;derivation from photos or drawings;20;;1;BIOPOP April 2005;;25;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Robinia pseudacacia;22045;unknown;27.5;;1;BIOPOP April 2005;;30;25;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Trifolium thalii;22050;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia articulata;22076;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia articulata;22076;laboratory/greenhouse/garden experiment;.18;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.18;.29;.12;;;;;;GERMANY;no Trifolium medium;22081;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium medium;22081;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium ochroleucon;22088;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium ochroleucon;22088;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium pratense;22096;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium pratense;22096;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium pratense;22096;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium repens;22101;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium repens;22101;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trifolium angustifolium;22108;field experiment;.11;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.11;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Vicia villosa s. varia;22113;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia tenuifolia;22123;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia cracca;22128;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia cracca;22128;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia cracca;22128;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia pannonica;22136;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia pisiformis;22140;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia sativa;22143;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia tetrasperma;22147;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Vicia tetrasperma;22147;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vicia tetrasperma;22147;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trifolium squamosum;22158;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melilotus altissima;22213;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melilotus officinalis;22218;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Melilotus officinalis;22218;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus luteus;22239;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus luteus;22239;laboratory/greenhouse/garden experiment;.45;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.45;.54;.37;;;;;;GERMANY;no Lupinus polyphyllus;22241;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Lupinus polyphyllus;22241;derivation from photos or drawings;1.175;;1;BIOPOP April 2005;;1.4;.95;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lupinus polyphyllus;22241;actual measurement (following LEDA data standards);.6;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.6;.69;.51;;;;;;NORWAY;unknown Hieracium pilosum;22268;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamaecytisus supinus;22377;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus onobrychis;22386;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus danicus;22416;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus danicus;22416;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus danicus;22416;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus glycyphyllos;22427;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Astragalus glycyphyllos;22427;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Astragalus glycyphyllos;22427;actual measurement (following LEDA data standards);.35;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.35;.35;.35;;;;;;GERMANY;no Astragalus glycyphyllos;22427;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Quercus palustris;22443;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Quercus petraea;22445;observation (like obvious taxonomical traits);42;;1;ECOFLORA - database of the ecological flora of the british isles;;42;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Quercus petraea;22445;unknown;27.3;;1;BIOPOP April 2005;;27.3;;;;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM;unknown Quercus petraea;22445;unknown;41.5;;1;BIOPOP April 2005;;45;38;;;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;FRANCE;unknown Quercus petraea;22445;unknown;42.5;;1;BIOPOP April 2005;;45;40;;;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;;unknown Quercus petraea;22445;unknown;40;;1;BIOPOP April 2005;;40;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Quercus petraea;22445;unknown;24;;1;BIOPOP April 2005;;30;18;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Quercus petraea;22445;unknown;40;;1;BIOPOP April 2005;;40;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Quercus petraea;22445;derivation from photos or drawings;35;;1;BIOPOP April 2005;;35;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Quercus petraea;22445;unknown;33;;1;BIOPOP April 2005;;33;;;;;;Jones, E. W. (1959): Biological flora of the British Isles: Quercus L.;UNITED KINGDOM;unknown Quercus pubescens;22449;derivation from photos or drawings;11.5;;1;BIOPOP April 2005;;20;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Quercus robur;22457;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Quercus robur;22457;derivation from photos or drawings;40;;1;BIOPOP April 2005;;40;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Quercus robur;22457;unknown;50;;1;BIOPOP April 2005;;50;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Quercus rubra;22466;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Castanea sativa;22480;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Castanea sativa;22480;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fagus sylvatica;22485;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fagus sylvatica;22485;derivation from photos or drawings;40;;1;BIOPOP April 2005;;40;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fagus sylvatica;22485;unknown;40;;1;BIOPOP April 2005;;40;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Fagus sylvatica;22485;observation (like obvious taxonomical traits);19;;1;ECOFLORA - database of the ecological flora of the british isles;;;19;;;;;Watt, A. S.(1931): no title given, publication in Journal of Ecology issue: 19 pages: 137-157 [19];;unknown Fagus sylvatica;22485;observation (like obvious taxonomical traits);21.5;;1;ECOFLORA - database of the ecological flora of the british isles;;24;19;;;;;Watt, A. S.(1931): no title given, publication in Journal of Ecology issue: 19 pages: 137-157 [19];;unknown Fagus sylvatica;22485;unknown;27;;1;BIOPOP April 2005;;30;24;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Fagus sylvatica;22485;unknown;35;;1;BIOPOP April 2005;;40;30;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Fagus sylvatica;22485;unknown;45;;1;BIOPOP April 2005;;50;40;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Quercus cerris;22497;observation (like obvious taxonomical traits);35;;1;ECOFLORA - database of the ecological flora of the british isles;;35;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Quercus cerris;22497;derivation from photos or drawings;35;;1;BIOPOP April 2005;;35;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium purpureum;22518;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium purpureum;22518;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium purpureum;22518;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium sanguineum;22557;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium sanguineum;22557;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium sanguineum;22557;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium sylvaticum;22559;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium sylvaticum;22559;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium sylvaticum;22559;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium sylvaticum;22559;actual measurement (following LEDA data standards);.1;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.13;.07;;;;;;NORWAY;unknown Geranium sylvaticum;22559;actual measurement (following LEDA data standards);.06;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.2;.04;;;;;;NORWAY;unknown Geranium versicolor;22561;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium versicolor;22561;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium divaricatum;22564;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium endressii;22570;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium endressii;22570;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium bohemicum;22580;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.95;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium columbinum;22581;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium columbinum;22581;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium columbinum;22581;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium dissectum;22583;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium dissectum;22583;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium dissectum;22583;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium lucidum;22584;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium lucidum;22584;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium lucidum;22584;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium molle;22585;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium molle;22585;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium molle;22585;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium palustre;22587;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium phaeum;22588;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium phaeum;22588;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium phaeum;22588;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pratense;22589;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pratense;22589;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pratense;22589;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium pusillum;22590;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pusillum;22590;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pusillum;22590;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium robertianum;22592;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium robertianum;22592;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium robertianum;22592;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium rotundifolium;22593;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium rotundifolium;22593;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium rotundifolium;22593;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hieracium villosum;22612;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geranium pyrenaicum;22631;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pyrenaicum;22631;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geranium pyrenaicum;22631;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erodium cicutarium;22675;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erodium maritimum;22679;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erodium moschatum;22680;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erodium moschatum;22680;laboratory/greenhouse/garden experiment;.25;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.25;.47;.12;;;;;;GERMANY;no Frankenia laevis;22690;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana verna;22708;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana verna;22708;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana verna;22708;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella tenella;22719;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurium tenuiflorum;22724;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium tenuiflorum;22724;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella uliginosa;22746;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella uliginosa;22746;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella uliginosa;22746;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.2;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana utriculosa;22754;derivation from photos or drawings;.13;;1;BIOPOP April 2005;;.2;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurium scilloides;22772;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Centaurium pulchellum;22823;observation (like obvious taxonomical traits);.085;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium pulchellum;22823;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium pulchellum;22823;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.15;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana punctata;22828;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana purpurea;22830;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana nivalis;22851;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana nivalis;22851;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana nivalis;22851;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana pannonica;22862;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Swertia perennis;22863;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Blackstonia perfoliata;22864;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Blackstonia perfoliata;22864;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Blackstonia perfoliata;22864;derivation from photos or drawings;.215;;1;BIOPOP April 2005;;.35;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana pneumonanthe;22875;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana pneumonanthe;22875;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana pneumonanthe;22875;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.4;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana lutea;22882;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella lutescens;22884;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.35;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurium littorale;22951;observation (like obvious taxonomical traits);.135;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium littorale;22951;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurium littorale;22951;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella germanica;22958;observation (like obvious taxonomical traits);.21;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella germanica;22958;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.35;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella germanica;22958;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium erythraea;22963;observation (like obvious taxonomical traits);.26;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium erythraea;22963;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centaurium erythraea;22963;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.07;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Centaurium erythraea;22963;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana brachyphylla subsp. favratii;22970;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.04;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cicendia filiformis;22974;observation (like obvious taxonomical traits);.075;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cicendia filiformis;22974;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cicendia filiformis;22974;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana cruciata;22980;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella ciliata;23007;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Gentianella ciliata;23007;derivation from photos or drawings;.12;;1;BIOPOP April 2005;;.2;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana clusii;23011;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lomatogonium carinthiacum;23028;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.1;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella campestris;23049;actual measurement;.212;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.212;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Gentianella campestris;23049;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella campestris;23049;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella campestris;23049;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentiana asclepiadea;23062;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella aspera;23066;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella campestris s. baltica;23077;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana bavarica;23084;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella bohemica;23087;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentiana acaulis;23091;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella amarella;23102;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella amarella;23102;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella amarella;23102;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.45;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gentianella anglica;23105;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Gentianella anglica;23105;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Deutzia scabra;23111;derivation from photos or drawings;1.85;;1;BIOPOP April 2005;;2.5;1.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes alpinum;23116;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes alpinum;23116;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes alpinum;23116;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes aureum;23118;derivation from photos or drawings;2;;1;BIOPOP April 2005;;2.5;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes nigrum;23122;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes nigrum;23122;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes nigrum;23122;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes petraeum;23124;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes rubrum;23126;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes rubrum;23126;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes rubrum;23126;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes sanguineum;23130;derivation from photos or drawings;1.625;;1;BIOPOP April 2005;;2;1.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ribes spicatum;23132;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes spicatum;23132;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes uva-crispa;23138;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ribes uva-crispa;23138;actual measurement (following LEDA data standards);.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.3;.3;;;;;;GERMANY;no Ribes uva-crispa;23138;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juglans nigra;23152;derivation from photos or drawings;22.5;;1;BIOPOP April 2005;;30;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juglans regia;23153;derivation from photos or drawings;15;;1;BIOPOP April 2005;;25;5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Philadelphus coronarius;23160;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;4;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum undulatum;23176;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum undulatum;23176;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum tetrapterum;23203;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum tetrapterum;23203;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum tetrapterum;23203;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum perforatum;23212;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum perforatum;23212;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum perforatum;23212;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum pulchrum;23219;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum pulchrum;23219;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum pulchrum;23219;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum maculatum;23226;actual measurement;.494;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.494;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Hypericum maculatum;23226;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum maculatum;23226;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum maculatum;23226;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum montanum;23241;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum montanum;23241;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum montanum;23241;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum hirsutum;23250;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum hirsutum;23250;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum hirsutum;23250;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.9;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum humifusum;23252;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum humifusum;23252;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum humifusum;23252;laboratory/greenhouse/garden experiment;.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.03;.06;.02;;;;;;GERMANY;no Hypericum humifusum;23252;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum elegans;23277;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum elodes;23279;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum elodes;23279;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum elodes;23279;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hypericum calycinum;23310;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum calycinum;23310;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum canadense;23312;observation (like obvious taxonomical traits);.16;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum canadense;23312;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum androsaemum;23335;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hypericum androsaemum;23335;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium montanum;23362;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teucrium scordium s. scordium;23452;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium scordium s. scordium;23452;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium botrys;23469;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium botrys;23469;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium botrys;23469;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dracocephalum ruyschiana;23487;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis angustifolia;23489;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis angustifolia;23489;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis angustifolia;23489;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.65;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium amplexicaule;23573;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium amplexicaule;23573;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium amplexicaule;23573;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salvia glutinosa;23588;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.65;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha suaveolens;23642;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha suaveolens;23642;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha suaveolens;23642;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Calamintha nepeta;23766;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Calamintha nepeta;23766;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thymus vulgaris;23794;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymus vulgaris;23794;unknown;.4;;1;BIOPOP April 2005;;.4;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Thymus vulgaris;23794;unknown;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Thymus vulgaris;23794;unknown;.1;;1;BIOPOP April 2005;;;.1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Leonurus cardiaca;23833;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Marrubium peregrinum;23838;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melissa officinalis;23840;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis speciosa;23861;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis speciosa;23861;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis speciosa;23861;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nepeta nuda;23899;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha arvensis;23905;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha arvensis;23905;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha arvensis;23905;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia officinalis;23945;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salvia verbenaca;23951;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia verbenaca;23951;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia verticillata;23952;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scutellaria hastifolia;23966;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scutellaria minor;23967;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scutellaria minor;23967;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scutellaria minor;23967;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Origanum vulgare;23973;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Origanum vulgare;23973;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Origanum vulgare;23973;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunella grandiflora;23985;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunella grandiflora;23985;laboratory/greenhouse/garden experiment;.09;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.09;.12;.08;;;;;;GERMANY;no Stachys sylvatica;24023;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys sylvatica;24023;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys sylvatica;24023;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys alopecuros;24036;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys alpina;24038;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys alpina;24038;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.85;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys alpina;24038;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ajuga genevensis;24142;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ajuga pyramidalis;24144;actual measurement;.11;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.11;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Ajuga pyramidalis;24144;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ajuga pyramidalis;24144;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ajuga pyramidalis;24144;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium album;24182;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium album;24182;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium album;24182;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium hybridum;24187;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium hybridum;24187;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium maculatum;24189;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium moluccellifolium;24190;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium moluccellifolium;24190;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium moluccellifolium;24190;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Leonurus marrubiastrum;24198;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Clinopodium vulgare;24218;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Clinopodium vulgare;24218;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Clinopodium vulgare;24218;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis pubescens;24228;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis segetum;24230;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis segetum;24230;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis segetum;24230;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium piliferum;24236;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nepeta grandiflora;24254;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.7;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha pulegium;24284;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha pulegium;24284;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha pulegium;24284;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha spicata;24289;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha spicata;24289;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha spicata;24289;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia pratensis;24299;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia pratensis;24299;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salvia pratensis;24299;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phlomis tuberosa;24343;derivation from photos or drawings;.975;;1;BIOPOP April 2005;;1.4;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunella vulgaris;24350;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunella vulgaris;24350;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunella vulgaris;24350;derivation from photos or drawings;.145;;1;BIOPOP April 2005;;.25;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys arvensis;24369;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys arvensis;24369;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys arvensis;24369;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scutellaria galericulata;24386;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scutellaria galericulata;24386;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scutellaria galericulata;24386;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hippuris vulgaris;24425;unknown;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teucrium scorodonia;24460;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium scorodonia;24460;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teucrium scorodonia;24460;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium scorodonia;24460;unknown;.2;;1;BIOPOP April 2005;.2;;;;;;;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.;;unknown Teucrium scorodonia;24460;unknown;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.;;unknown Teucrium scorodonia;24460;unknown;.4;;1;BIOPOP April 2005;;.4;;;;;;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.;;unknown Teucrium scorodonia;24460;unknown;.2;;1;BIOPOP April 2005;.2;;;;;;;Hutchinson, T. C. (1968): Biological flora of the British Isles: Teucrium scorodonia L.;;unknown Acinos arvensis;24493;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ajuga chamaepitys;24497;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ajuga chamaepitys;24497;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ajuga chamaepitys;24497;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymus pannonicus;24516;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ballota nigra;24563;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.95;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis bifida;24586;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis bifida;24586;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis bifida;24586;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis ladanum;24587;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acinos alpinus;24605;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopus europaeus;24606;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lycopus europaeus;24606;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopus europaeus;24606;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lycopus exaltatus;24609;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Marrubium vulgare;24614;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Marrubium vulgare;24614;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Marrubium vulgare;24614;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.5;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melittis melissophyllum;24619;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melittis melissophyllum;24619;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melittis melissophyllum;24619;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha aquatica;24622;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha aquatica;24622;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.75;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mentha aquatica;24622;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mentha longifolia;24632;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;.95;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis tetrahit;24648;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galeopsis tetrahit;24648;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galeopsis tetrahit;24648;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glechoma hederacea;24650;unknown;.6;;1;BIOPOP April 2005;;.6;;;;;;Hutchings, M. J. (1999): Biological flora of the British Isles: Glechoma hederacea L. (Nepeta glechoma Benth., N. hederacea (L.) Trev.).;;unknown Glechoma hederacea;24650;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glechoma hederacea;24650;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glechoma hederacea;24650;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glechoma hederacea;24650;unknown;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Hutchings, M. J. (1999): Biological flora of the British Isles: Glechoma hederacea L. (Nepeta glechoma Benth., N. hederacea (L.) Trev.).;;unknown Hyssopus officinalis;24658;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamiastrum galeobdolon;24666;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Lamiastrum galeobdolon;24666;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Origanum majorana;24674;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lavandula angustifolia;24725;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salvia nemorosa;24767;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Satureja montana;24782;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nepeta cataria;24784;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nepeta cataria;24784;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nepeta cataria;24784;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.85;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys recta;24800;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Teucrium chamaedrys;24813;field experiment;.055;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.055;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Teucrium chamaedrys;24813;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys annua;24834;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys germanica;24844;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys germanica;24844;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.95;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys germanica;24844;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Teucrium scordium;24902;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys officinalis;24916;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys officinalis;24916;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys officinalis;24916;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Stachys palustris;24921;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys palustris;24921;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Stachys palustris;24921;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymus praecox;24924;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymus serpyllum;24928;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Thymus serpyllum;24928;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymus pulegioides;24929;field experiment;.095;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.095;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Thymus pulegioides;24929;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thymus pulegioides;24929;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aesculus hippocastanum;24982;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aesculus hippocastanum;24982;unknown;20;;1;BIOPOP April 2005;;20;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Satureja hortensis;25007;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Satureja hortensis;25007;laboratory/greenhouse/garden experiment;.11;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.2;.07;;;;;;GERMANY;no Scutellaria altissima;25013;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Scutellaria altissima;25013;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;.9;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunella laciniata;25036;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunella laciniata;25036;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunella laciniata;25036;derivation from photos or drawings;.145;;1;BIOPOP April 2005;;.25;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium purpureum;25103;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lamium purpureum;25103;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lamium purpureum;25103;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Elsholtzia ciliata;25121;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Horminum pyrenaicum;25138;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ajuga reptans;25159;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ajuga reptans;25159;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ajuga reptans;25159;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Globularia cordifolia;25184;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Globularia nudicaulis;25197;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Globularia punctata;25198;derivation from photos or drawings;.145;;1;BIOPOP April 2005;;.25;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Globularia punctata;25198;actual measurement (following LEDA data standards);.06;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.06;.09;.05;;;;;;GERMANY;no Phacelia tanacetifolia;25220;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phacelia tanacetifolia;25220;laboratory/greenhouse/garden experiment;.75;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.77;.92;.57;;;;;;GERMANY;no Gunnera tinctoria;25225;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Myriophyllum alterniflorum;25228;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myriophyllum alterniflorum;25228;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myriophyllum spicatum;25232;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myriophyllum spicatum;25232;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myriophyllum verticillatum;25234;observation (like obvious taxonomical traits);1.75;;1;ECOFLORA - database of the ecological flora of the british isles;;3;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myriophyllum verticillatum;25234;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nuphar lutea;25253;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nuphar pumila;25256;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nymphaea alba;25260;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nymphaea candida;25264;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Loranthus europaeus;25273;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Morus alba;25308;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;10;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Morus nigra;25309;derivation from photos or drawings;8;;1;BIOPOP April 2005;;15;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myrica gale;25316;observation (like obvious taxonomical traits);1.55;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myrica gale;25316;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myrica gale;25316;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Corydalis cava;25389;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corydalis cava;25389;laboratory/greenhouse/garden experiment;.14;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.14;.23;.07;;;;;;GERMANY;no Corydalis intermedia;25403;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Paeonia officinalis;25406;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.9;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chelidonium majus;25435;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chelidonium majus;25435;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chelidonium majus;25435;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria reuteri;25439;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria rostellata;25441;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria capreolata;25443;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria capreolata;25443;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria densiflora;25449;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Corydalis solida;25469;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corydalis solida;25469;laboratory/greenhouse/garden experiment;.1;26;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.27;.04;;;;;;GERMANY;no Dicentra spectabilis;25476;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eschscholzia californica;25478;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria bastardii;25483;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Corydalis pumila;25496;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Papaver argemone;25500;unknown;.25;;1;BIOPOP April 2005;;.45;.05;;;;;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).;;unknown Papaver argemone;25500;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Papaver argemone;25500;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver argemone;25500;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver dubium;25513;unknown;1;;1;BIOPOP April 2005;;1;;;;;;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).;;unknown Papaver dubium;25513;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver dubium;25513;unknown;.47;;1;BIOPOP April 2005;;.9;.04;;;;;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).;;unknown Papaver dubium;25513;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver dubium;25513;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria schleicheri;25520;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria vaillantii;25522;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria vaillantii;25522;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glaucium corniculatum;25531;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glaucium flavum;25533;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glaucium flavum;25533;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glaucium flavum;25533;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glaucium flavum;25533;laboratory/greenhouse/garden experiment;.59;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.6;.73;.48;;;;;;GERMANY;no Meconopsis cambrica;25542;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Meconopsis cambrica;25542;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fumaria muralis;25544;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria muralis;25544;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria occidentalis;25548;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria officinalis;25549;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria officinalis;25549;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria parviflora;25553;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Fumaria parviflora;25553;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fumaria parviflora;25553;laboratory/greenhouse/garden experiment;.18;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.18;.18;.18;;;;;;GERMANY;no Fumaria purpurea;25560;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Papaver rhoeas;25577;unknown;.47;;1;BIOPOP April 2005;;.9;.04;;;;;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).;;unknown Papaver rhoeas;25577;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Papaver rhoeas;25577;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver rhoeas;25577;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver somniferum;25589;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1.1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Papaver hybridum;25595;unknown;.325;;1;BIOPOP April 2005;;.5;.15;;;;;McNaughton, I. H. (1964): Biological flora of the British Isles: Papaver rhoeas L., P. dubium (L.).;;unknown Papaver hybridum;25595;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Papaver hybridum;25595;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Papaver hybridum;25595;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Parnassia palustris;25636;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Parnassia palustris;25636;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parnassia palustris;25636;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva pusilla;25668;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malva pusilla;25668;laboratory/greenhouse/garden experiment;.15;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.14;.18;.1;;;;;;GERMANY;no Malva sylvestris;25674;observation (like obvious taxonomical traits);.675;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.45;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva sylvestris;25674;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malva sylvestris;25674;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;;.45;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva verticillata;25681;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malva verticillata;25681;laboratory/greenhouse/garden experiment;1.46;26;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.46;1.8;1.14;;;;;;GERMANY;no Malva alcea;25705;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malva moschata;25717;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva moschata;25717;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva moschata;25717;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malva neglecta;25718;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva neglecta;25718;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malva neglecta;25718;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hibiscus trionum;25723;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lavatera arborea;25729;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lavatera arborea;25729;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Malloch, A. J. M. (unknown e-mail address);;unknown Lavatera cretica;25733;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lavatera cretica;25733;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lavatera thuringiaca;25745;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;1.1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alcea rosea;25760;derivation from photos or drawings;1.8;;1;BIOPOP April 2005;;2.7;.9;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alcea rosea;25760;laboratory/greenhouse/garden experiment;1.34;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.36;1.62;1.13;;;;;;GERMANY;no Althaea hirsuta;25778;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Althaea officinalis;25782;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Althaea officinalis;25782;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Althaea officinalis;25782;laboratory/greenhouse/garden experiment;.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.55;.88;.23;;;;;;GERMANY;no Althaea officinalis;25782;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis stricta;25827;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis stricta;25827;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis stricta;25827;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oxalis pes-caprae;25829;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis corniculata;25840;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis corniculata;25840;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxalis corniculata;25840;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oxalis articulata;25841;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Oxalis acetosella;25842;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Oxalis acetosella;25842;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum tenuifolium;25855;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum usitatissimum;25866;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum viscosum;25871;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Radiola linoides;25873;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Radiola linoides;25873;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.1;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Radiola linoides;25873;laboratory/greenhouse/garden experiment;.03;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.02;.03;.02;;;;;;GERMANY;no Radiola linoides;25873;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum perenne;25878;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum perenne;25878;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum perenne;25878;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum perenne s. alpinum;25915;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum catharticum;25925;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum catharticum;25925;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum catharticum;25925;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum flavum;25933;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum leonii;25942;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum austriacum;25949;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linum bienne;25957;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linum bienne;25957;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lythrum hyssopifolia;26029;unknown;.6;;1;BIOPOP April 2005;;.6;;;;;;Callaghan, D. A. (1998): Biological flora of the British Isles: Lythrum hyssopifolium L.;;unknown Lythrum hyssopifolia;26029;unknown;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Callaghan, D. A. (1998): Biological flora of the British Isles: Lythrum hyssopifolium L.;;unknown Lythrum hyssopifolia;26029;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lythrum portula;26036;observation (like obvious taxonomical traits);.145;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lythrum portula;26036;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lythrum portula;26036;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lythrum salicaria;26038;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lythrum salicaria;26038;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.8;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lythrum salicaria;26038;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Circaea alpina;26057;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Circaea alpina;26057;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Circaea alpina;26057;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Circaea lutetiana;26061;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Circaea lutetiana;26061;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Circaea lutetiana;26061;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium alpestre;26069;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium alsinifolium;26071;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium alsinifolium;26071;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium alsinifolium;26071;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium anagallidifolium;26073;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium anagallidifolium;26073;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium anagallidifolium;26073;derivation from photos or drawings;.095;;1;BIOPOP April 2005;;.15;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium anagallidifolium;26073;actual measurement (following LEDA data standards);.03;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.05;.02;;;;;;NORWAY;unknown Epilobium angustifolium;26075;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium angustifolium;26075;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium angustifolium;26075;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula vulgaris;26085;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula vulgaris;26085;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula vulgaris;26085;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinguicula vulgaris;26085;actual measurement (following LEDA data standards);.01;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.03;.01;;;;;;NORWAY;unknown Utricularia intermedia;26099;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Utricularia intermedia;26099;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Utricularia minor;26100;observation (like obvious taxonomical traits);.16;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Utricularia minor;26100;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula alpina;26120;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pinguicula grandiflora;26126;observation (like obvious taxonomical traits);.14;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula grandiflora;26126;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula lusitanica;26137;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pinguicula lusitanica;26137;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche rapum-genistae;26147;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche rapum-genistae;26147;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche reticulata;26159;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche reticulata;26159;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche loricata;26187;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche loricata;26187;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Rumsey, F. J.(1991): no title given, publication in Watsonia issue: 18 pages: 257-295 [18];;unknown Orobanche minor;26203;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche minor;26203;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Rumsey, F. J.(1991): no title given, publication in Watsonia issue: 18 pages: 257-295 [18];;unknown Orobanche purpurea;26224;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche purpurea;26224;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche caryophyllacea;26253;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche caryophyllacea;26253;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche elatior;26270;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche elatior;26270;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche hederae;26288;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche hederae;26288;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche alba;26302;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orobanche alba;26302;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Menyanthes trifoliata;26352;observation (like obvious taxonomical traits);.21;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Menyanthes trifoliata;26352;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Menyanthes trifoliata;26352;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Nymphoides peltata;26354;unknown;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ligustrum vulgare;26363;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ligustrum vulgare;26363;unknown;5;;1;BIOPOP April 2005;;5;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Ligustrum vulgare;26363;derivation from photos or drawings;3;;1;BIOPOP April 2005;;5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ligustrum vulgare;26363;unknown;3;;1;BIOPOP April 2005;;5;1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Ligustrum vulgare;26363;unknown;2.5;;1;BIOPOP April 2005;;4;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Syringa vulgaris;26377;derivation from photos or drawings;6;;1;BIOPOP April 2005;;10;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fraxinus excelsior;26381;unknown;43;;1;BIOPOP April 2005;;43;;;;;;Wardle, P. (1961): Biological flora of the British Isles: Fraxinus excelsior L.;;unknown Fraxinus excelsior;26381;unknown;25;;1;BIOPOP April 2005;;25;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Fraxinus excelsior;26381;unknown;40;;1;BIOPOP April 2005;;40;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Fraxinus excelsior;26381;derivation from photos or drawings;25;;1;BIOPOP April 2005;;40;10;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fraxinus excelsior;26381;observation (like obvious taxonomical traits);15;;1;ECOFLORA - database of the ecological flora of the british isles;;;15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fraxinus excelsior;26381;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;25;15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fraxinus excelsior;26381;unknown;15;;1;BIOPOP April 2005;;18;12;;;;;Wardle, P. (1961): Biological flora of the British Isles: Fraxinus excelsior L.;;unknown Fraxinus ornus;26396;derivation from photos or drawings;6.5;;1;BIOPOP April 2005;;8;5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fraxinus pennsylvanica;26402;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oenothera biennis;26442;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenothera biennis;26442;derivation from photos or drawings;1.175;;1;BIOPOP April 2005;;1.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oenothera biennis;26442;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenothera erythrosepala;26448;observation (like obvious taxonomical traits);1.05;;1;ECOFLORA - database of the ecological flora of the british isles;;1.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenothera erythrosepala;26448;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oenothera erythrosepala;26448;laboratory/greenhouse/garden experiment;.85;18;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.85;.97;.68;;;;;;GERMANY;no Oenothera parviflora;26459;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oenothera parviflora;26459;laboratory/greenhouse/garden experiment;.89;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.84;.95;.57;;;;;;GERMANY;no Oenothera rosea;26462;laboratory/greenhouse/garden experiment;.12;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.14;.26;.07;;;;;;GERMANY;no Oenothera stricta;26466;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium tetragonum;26469;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium tetragonum;26469;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium tetragonum;26469;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fuchsia magellanica;26476;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ludwigia palustris;26480;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ludwigia palustris;26480;laboratory/greenhouse/garden experiment;.03;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.03;.04;.02;;;;;;GERMANY;no Ludwigia palustris;26480;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ludwigia palustris;26480;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oenothera ammophila;26491;laboratory/greenhouse/garden experiment;.44;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.51;.8;.31;;;;;;GERMANY;no Epilobium montanum;26496;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium montanum;26496;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium montanum;26496;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium nutans;26501;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium obscurum;26502;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium obscurum;26502;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium obscurum;26502;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium palustre;26504;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium palustre;26504;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium palustre;26504;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium parviflorum;26505;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium parviflorum;26505;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium parviflorum;26505;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium roseum;26508;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium roseum;26508;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium roseum;26508;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium ciliatum;26518;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium ciliatum;26518;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium ciliatum;26518;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium collinum;26520;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium dodonaei;26526;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.9;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium fleischeri;26533;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium hirsutum;26536;observation (like obvious taxonomical traits);1.15;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.8;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium hirsutum;26536;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epilobium hirsutum;26536;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;;.8;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium lanceolatum;26540;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium lanceolatum;26540;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Epilobium lanceolatum;26540;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum minus;26547;observation (like obvious taxonomical traits);.825;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thalictrum minus;26547;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thalictrum minus;26547;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum morisonii;26553;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.5;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum simplex;26562;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum lucidum;26571;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trollius europaeus;26598;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trollius europaeus;26598;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trollius europaeus;26598;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus reptans;26623;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus reptans;26623;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus reptans;26623;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus flammula;26624;observation (like obvious taxonomical traits);.29;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus flammula;26624;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus flammula;26624;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus sardous;26637;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus sardous;26637;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus sardous;26637;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum alpinum;26671;observation (like obvious taxonomical traits);.115;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thalictrum alpinum;26671;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thalictrum alpinum;26671;actual measurement (following LEDA data standards);.04;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.06;.03;;;;;;NORWAY;unknown Thalictrum aquilegiifolium;26672;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum flavum;26674;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thalictrum flavum;26674;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thalictrum flavum;26674;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus parviflorus;26692;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus parviflorus;26692;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus tripartitus;26711;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus sceleratus;26717;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus sceleratus;26717;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus sceleratus;26717;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus lanuginosus;26737;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus lingua;26743;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus lingua;26743;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus lingua;26743;laboratory/greenhouse/garden experiment;.92;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.95;1.18;.79;;;;;;GERMANY;no Ranunculus lingua;26743;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus hederaceus;26758;derivation from photos or drawings;.205;;1;BIOPOP April 2005;;.4;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus hybridus;26761;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus repens;26770;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus repens;26770;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus repens;26770;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus platanifolius;26778;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus platanifolius;26778;actual measurement (following LEDA data standards);.6;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.6;.7;.5;;;;;;GERMANY;no Ranunculus ophioglossifolius;26792;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus ophioglossifolius;26792;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus bulbosus;26809;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus ololeucos;26821;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus omiophyllus;26822;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus omiophyllus;26822;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus montanus;26836;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus muricatus;26837;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus muricatus;26837;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus ficaria;26860;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus ficaria;26860;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus ficaria;26860;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus aconitifolius;26864;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus acris;26865;unknown;.575;;1;BIOPOP April 2005;;1;.15;;;;;Harper, J. L. (1957): Biological flora of the British Isles: Ranunculus acris, R. repens, R. bulbosus.;;unknown Ranunculus acris;26865;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus acris;26865;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus acris;26865;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus acris;26865;actual measurement (following LEDA data standards);.04;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.04;.01;;;;;;NORWAY;unknown Ranunculus acris;26865;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.1;.01;;;;;;NORWAY;unknown Ranunculus illyricus;26876;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus fluitans;26881;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus glacialis;26885;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.1;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus carinthiacus;26939;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helleborus niger;26973;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hepatica nobilis;26984;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.1;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hepatica nobilis;26984;laboratory/greenhouse/garden experiment;.12;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.11;.16;.06;;;;;;GERMANY;no Ranunculus auricomus;27000;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus auricomus;27000;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus alpestris;27002;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus aquatilis;27005;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.02;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Ranunculus arvensis;27014;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ranunculus arvensis;27014;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus arvensis;27014;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pulsatilla patens;27045;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulsatilla pratensis;27054;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulsatilla vernalis;27063;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulsatilla vulgaris;27065;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulsatilla vulgaris;27065;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Wells, T. C. E. (unknown e-mail address);;unknown Helleborus viridis;27076;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helleborus viridis;27076;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helleborus viridis;27076;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helleborus foetidus;27081;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Helleborus foetidus;27081;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Helleborus foetidus;27081;actual measurement (following LEDA data standards);.25;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.25;.25;.25;;;;;;GERMANY;no Helleborus foetidus;27081;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Consolida orientalis;27096;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myosurus minimus;27104;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.13;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosurus minimus;27104;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Myosurus minimus;27104;laboratory/greenhouse/garden experiment;.07;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.06;.1;.03;;;;;;GERMANY;no Myosurus minimus;27104;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nigella arvensis;27106;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nigella arvensis;27106;laboratory/greenhouse/garden experiment;.26;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.28;.34;.24;;;;;;GERMANY;no Nigella damascena;27114;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nigella damascena;27114;laboratory/greenhouse/garden experiment;.55;14;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.54;.61;.43;;;;;;GERMANY;no Nigella sativa;27124;derivation from photos or drawings;.265;;1;BIOPOP April 2005;;.35;.18;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pulsatilla alpina;27129;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Delphinium elatum;27141;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.8;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aquilegia vulgaris;27156;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aquilegia vulgaris;27156;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eranthis hyemalis;27181;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eranthis hyemalis;27181;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Eranthis hyemalis;27181;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Clematis recta;27203;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Clematis vitalba;27205;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Clematis vitalba;27205;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Clematis viticella;27206;derivation from photos or drawings;3;;1;BIOPOP April 2005;;3;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Consolida ajacis;27212;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.85;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Consolida regalis;27229;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aquilegia atrata;27254;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aquilegia einseleana;27264;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aconitum napellus;27279;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aconitum napellus;27279;derivation from photos or drawings;.925;;1;BIOPOP April 2005;;1.4;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aconitum napellus;27279;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Caltha palustris;27293;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Caltha palustris;27293;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Clematis alpina;27310;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Actaea spicata;27324;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.65;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Actaea spicata;27324;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Actaea spicata;27324;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adonis aestivalis;27328;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adonis annua;27329;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Adonis annua;27329;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Adonis flammea;27336;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anemone nemorosa;27355;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anemone nemorosa;27355;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anemone nemorosa;27355;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anemone ranunculoides;27359;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anemone ranunculoides;27359;laboratory/greenhouse/garden experiment;.12;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.11;.15;.05;;;;;;GERMANY;no Anemone sylvestris;27363;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anemone sylvestris;27363;actual measurement (following LEDA data standards);.13;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.13;.21;.05;;;;;;GERMANY;no Aconitum variegatum;27421;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.4;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex rugosus;27447;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex rupestris;27449;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex sanguineus;27450;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex sanguineus;27450;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.7;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex scutatus;27451;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex stenophyllus;27453;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.7;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex thyrsiflorus;27457;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Montia fontana;27478;observation (like obvious taxonomical traits);.26;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Montia fontana;27478;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Montia fontana;27478;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.4;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Montia fontana subsp. chondrosperma;27489;actual measurement (following LEDA data standards);.02;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.02;.04;.02;;;;;;GERMANY;no Claytonia perfoliata;27495;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Claytonia perfoliata;27495;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Claytonia perfoliata;27495;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Claytonia sibirica;27498;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Claytonia sibirica;27498;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Portulaca oleracea;27501;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Portulaca oleracea;27501;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Portulaca oleracea;27501;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex crispus;27506;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex crispus;27506;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex crispus;27506;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;1.2;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex frutescens;27517;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex hydrolapathum;27528;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex hydrolapathum;27528;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex longifolius;27534;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex longifolius;27534;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex longifolius;27534;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex maritimus;27537;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex maritimus;27537;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex nivalis;27540;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex obtusifolius;27542;observation (like obvious taxonomical traits);.675;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex obtusifolius;27542;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex obtusifolius;27542;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex palustris;27549;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex palustris;27549;laboratory/greenhouse/garden experiment;.73;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.72;.85;.59;;;;;;GERMANY;no Rumex palustris;27549;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex patientia;27551;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex patientia;27551;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex patientia;27551;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.8;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex pulcher;27560;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex pulcher;27560;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex pulcher;27560;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum viviparum;27573;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum viviparum;27573;actual measurement (following LEDA data standards);.03;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.1;.02;;;;;;NORWAY;unknown Reynoutria japonica;27574;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reynoutria japonica;27574;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reynoutria japonica;27574;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Reynoutria sachalinensis;27578;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reynoutria sachalinensis;27578;derivation from photos or drawings;3;;1;BIOPOP April 2005;;4;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rheum rhabarbarum;27584;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex acetosa;27593;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex acetosa;27593;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex acetosa;27593;actual measurement (following LEDA data standards);.04;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.08;.01;;;;;;NORWAY;unknown Rumex acetosella;27601;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex alpinus;27602;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex alpinus;27602;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex aquaticus;27607;observation (like obvious taxonomical traits);1.4;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.8;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex aquaticus;27607;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex aquaticus;27607;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;;.8;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex conglomeratus;27623;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rumex conglomeratus;27623;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum hydropiper;27636;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum hydropiper;27636;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum hydropiper;27636;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum maritimum;27651;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Polygonum minus;27653;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum minus;27653;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum minus;27653;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum mite;27654;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum neglectum;27655;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Polygonum oxyspermum;27660;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum oxyspermum;27660;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum oxyspermum;27660;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;1;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum persicaria;27673;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum persicaria;27673;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum persicaria;27673;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum rurivagum;27680;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fagopyrum esculentum;27702;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fagopyrum tataricum;27706;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Koenigia islandica;27709;observation (like obvious taxonomical traits);.035;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Koenigia islandica;27709;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxyria digyna;27715;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Oxyria digyna;27715;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Oxyria digyna;27715;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum amphibium;27725;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum amphibium;27725;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum amphibium;27725;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum arenastrum;27735;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum arenastrum;27735;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum aviculare;27740;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum aviculare;27740;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.5;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum bistorta;27743;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum bistorta;27743;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;;.25;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum bistorta;27743;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonum boreale;27745;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum lapathifolium;27747;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygonum lapathifolium;27747;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.75;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago media;27756;observation (like obvious taxonomical traits);.425;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.05;;;;;Sagar, G. R. (1964): no title given, publication in Journal of Ecology issue: 52 pages: 189-221 [52];;unknown Plantago media;27756;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Sagar, G. R. (1964): no title given, publication in Journal of Ecology issue: 52 pages: 189-221 [52];;unknown Plantago media;27756;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago major;27829;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Plantago major;27829;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago maritima;27843;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Plantago maritima;27843;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago maritima;27843;actual measurement (following LEDA data standards);.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.14;.25;.07;;;;;;GERMANY;no Plantago maritima s. maritima;27848;actual measurement (following LEDA data standards);1.4;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);1.3;2;.3;;;;;;NORWAY;unknown Littorella uniflora;27852;derivation from photos or drawings;.095;;1;BIOPOP April 2005;;.15;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago alpina;27858;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago lanceolata;27860;field experiment;.07;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.07;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Plantago lanceolata;27860;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago lanceolata;27860;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Sagar, G. R. (1964): no title given, publication in Journal of Ecology issue: 52 pages: 189-221 [52];;unknown Plantago lanceolata;27860;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Sagar, G. R. (1964): no title given, publication in Journal of Ecology issue: 52 pages: 189-221 [52];;unknown Plantago arenaria;27863;laboratory/greenhouse/garden experiment;.33;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.31;.35;.25;;;;;;GERMANY;no Phytolacca americana;27870;unknown;3;;1;BIOPOP April 2005;;3;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Pittosporum crassifolium;27875;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Plantago atrata;27890;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago coronopus;27899;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.08;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Plantago coronopus;27899;laboratory/greenhouse/garden experiment;.04;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.04;.08;.02;;;;;;GERMANY;no Plantago coronopus;27899;observation (like obvious taxonomical traits);0;;1;ECOFLORA - database of the ecological flora of the british isles;;;0;;;;;Dodds, J. C.(1953): no title given, publication in Journal of Ecology issue: 41 pages: 447-478 [41];;unknown Plantago coronopus;27899;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;0;;;;;Dodds, J. C.(1953): no title given, publication in Journal of Ecology issue: 41 pages: 447-478 [41];;unknown Reseda phyteuma;27929;field experiment;.162;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.162;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Reseda alba;27957;laboratory/greenhouse/garden experiment;.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.46;.58;.37;;;;;;GERMANY;no Reseda lutea;27974;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;.75;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reseda lutea;27974;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Reseda lutea;27974;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reseda luteola;27977;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reseda luteola;27977;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Reseda luteola;27977;laboratory/greenhouse/garden experiment;.72;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.72;.89;.52;;;;;;GERMANY;no Reseda luteola;27977;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Reseda odorata;27980;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhamnus saxatilis;27989;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhamnus catharticus;28012;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhamnus catharticus;28012;unknown;5;;1;BIOPOP April 2005;;6;4;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Rhamnus catharticus;28012;unknown;5.5;;1;BIOPOP April 2005;;8;3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Rhamnus pumilus;28028;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Frangula alnus;28032;observation (like obvious taxonomical traits);4.5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Frangula alnus;28032;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;;4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Frangula alnus;28032;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;4;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Frangula alnus;28032;unknown;4.5;;1;BIOPOP April 2005;;5;4;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Frangula alnus;28032;unknown;2.5;;1;BIOPOP April 2005;;4;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Frangula alnus;28032;unknown;2;;1;BIOPOP April 2005;;3;1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Frangula alnus;28032;unknown;7;;1;BIOPOP April 2005;;7;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Polygala vulgaris;28062;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala vulgaris;28062;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;.03;;;;;Lack, A. (unknown e-mail address);;unknown Polygala vulgaris;28062;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Lack, A. (unknown e-mail address);;unknown Polygala oxyptera;28073;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala serpyllifolia;28082;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Polygala serpyllifolia;28082;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala chamaebuxus;28113;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala comosa;28115;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala calcarea;28137;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygala calcarea;28137;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygala calcarea;28137;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala amara;28142;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala amarella;28146;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Fearn, G. M.(1975): no title given, publication in Watsonia issue: 10 pages: 371-383 [10];;unknown Polygala amarella;28146;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.15;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygala amarella;28146;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polygala amarella;28146;actual measurement (following LEDA data standards);.02;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.03;.04;.02;;;;;;SWEDEN;unknown Polygala alpestris;28160;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Collomia grandiflora;28174;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polemonium caeruleum;28181;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Polemonium caeruleum;28181;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polemonium caeruleum;28181;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Limonium vulgare;28293;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Limonium vulgare;28293;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Limonium vulgare;28293;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Armeria maritima;28355;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Limonium humile;28390;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Boorman, L. A.(1967): no title given, publication in Journal of Ecology issue: 55 pages: 221-232 [55];;unknown Limonium humile;28390;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Boorman, L. A.(1967): no title given, publication in Journal of Ecology issue: 55 pages: 221-232 [55];;unknown Limonium bellidifolium;28470;observation (like obvious taxonomical traits);.185;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Limonium bellidifolium;28470;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Armeria arcuata;28500;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Limonium minutum s. minutum;28573;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Limonium minutum s. minutum;28573;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Armeria maritima s. elongata;28709;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Pyrola chlorantha;28769;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrola media;28773;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrola media;28773;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrola media;28773;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrola minor;28775;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrola minor;28775;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrola minor;28775;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrola minor;28775;actual measurement (following LEDA data standards);.02;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.03;.02;;;;;;NORWAY;unknown Pyrola minor;28775;actual measurement (following LEDA data standards);.04;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.06;.02;;;;;;NORWAY;unknown Pyrola rotundifolia;28777;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrola rotundifolia;28777;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrola rotundifolia;28777;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anagallis arvensis;28783;field experiment;.1;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.1;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Anagallis arvensis;28783;observation (like obvious taxonomical traits);.18;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anagallis arvensis;28783;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis arvensis;28783;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;;.06;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Androsace maxima;28785;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace maxima;28785;laboratory/greenhouse/garden experiment;.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.01;.02;0;;;;;;GERMANY;no Lysimachia thyrsiflora;28789;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia thyrsiflora;28789;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia thyrsiflora;28789;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chimaphila umbellata;28795;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Moneses uniflora;28798;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Moneses uniflora;28798;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Monotropa hypopitys;28803;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Monotropa hypopitys;28803;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orthilia secunda;28809;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Orthilia secunda;28809;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cortusa matthioli;28841;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace obtusifolia;28845;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula clusiana;28853;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace hausmannii;28855;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.04;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula veris;28858;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula veris;28858;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula veris;28858;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glaux maritima;28861;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glaux maritima;28861;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Glaux maritima;28861;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trientalis europaea;28871;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trientalis europaea;28871;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Trientalis europaea;28871;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trientalis europaea;28871;actual measurement (following LEDA data standards);.03;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.05;.03;;;;;;NORWAY;unknown Cyclamen purpurascens;28878;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia terrestris;28880;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Soldanella pusilla;28894;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula scotica;28898;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula scotica;28898;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Ritchie, J. C. (1954): no title given, publication in Journal of Ecology issue: 42 pages: 623-628 [42];;unknown Soldanella alpina;28904;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace septentrionalis;28905;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace septentrionalis;28905;laboratory/greenhouse/garden experiment;.01;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.01;.01;.01;;;;;;GERMANY;no Primula auricula;28913;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula farinosa;28915;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula farinosa;28915;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hottonia palustris;28918;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Androsace helvetica;28920;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.05;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia nummularia;28922;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia nummularia;28922;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia nemorum;28927;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia nemorum;28927;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia punctata;28929;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia punctata;28929;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia punctata;28929;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis tenella;28935;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anagallis tenella;28935;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anagallis tenella;28935;derivation from photos or drawings;.12;;1;BIOPOP April 2005;;.2;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis minima;28953;observation (like obvious taxonomical traits);.055;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Anagallis minima;28953;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis minima;28953;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula minima;28954;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.04;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Soldanella minima;28955;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Soldanella montana;28961;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace elongata;28969;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Samolus valerandi;28974;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Samolus valerandi;28974;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Samolus valerandi;28974;derivation from photos or drawings;.21;;1;BIOPOP April 2005;;.35;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia vulgaris;28980;field experiment;1.009;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;1.009;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Lysimachia vulgaris;28980;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lysimachia vulgaris;28980;derivation from photos or drawings;.925;;1;BIOPOP April 2005;;1.4;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lysimachia vulgaris;28980;observation (like obvious taxonomical traits);1.05;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula vulgaris;28981;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis foemina;29031;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anagallis foemina;29031;laboratory/greenhouse/garden experiment;.11;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.11;.14;.07;;;;;;GERMANY;no Androsace lactea;29061;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Androsace chamaejasme;29080;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Primula elatior;29086;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula elatior;29086;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Primula elatior;29086;actual measurement (following LEDA data standards);.04;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.05;.09;.02;;;;;;GERMANY;no Primula elatior;29086;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Adonis vernalis;29095;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus vestitus;29143;derivation from photos or drawings;2;;1;BIOPOP April 2005;;2.5;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sanguisorba minor;29153;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sanguisorba minor;29153;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sanguisorba minor;29153;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbaria sorbifolia;29158;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus anglica;29160;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus anglica;29160;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus aucuparia;29162;observation (like obvious taxonomical traits);15;;1;ECOFLORA - database of the ecological flora of the british isles;;15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus aucuparia;29162;unknown;9;;1;BIOPOP April 2005;;15;3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Sorbus aucuparia;29162;derivation from photos or drawings;9;;1;BIOPOP April 2005;;15;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus aucuparia;29162;unknown;18;;1;BIOPOP April 2005;;20;16;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Sorbus domestica;29168;derivation from photos or drawings;11.5;;1;BIOPOP April 2005;;15;8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus rudis;29174;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus schleicheri;29177;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus senticosus;29180;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus tereticaulis;29186;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus nemoralis;29191;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus laciniatus;29212;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa glauca;29258;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa pimpinellifolia;29288;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa pimpinellifolia;29288;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa pimpinellifolia;29288;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa rubiginosa;29291;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa rubiginosa;29291;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa rubiginosa;29291;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa canina;29295;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa canina;29295;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa canina;29295;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus cerasus;29305;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;10;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus serotina;29315;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Mulligan, G. A. (1981): The biology of Canadian weeds. 51. Prunus virginiana L. and P. serotina Ehrh.;;unknown Prunus serotina;29315;derivation from photos or drawings;9;;1;BIOPOP April 2005;;15;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus serotina;29315;unknown;21.5;;1;BIOPOP April 2005;;25;18;;;;;Mulligan, G. A. (1981): The biology of Canadian weeds. 51. Prunus virginiana L. and P. serotina Ehrh.;;unknown Prunus serotina;29315;observation (like obvious taxonomical traits);22;;1;ECOFLORA - database of the ecological flora of the british isles;;22;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus spinosa;29316;field experiment;.26;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.26;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Prunus spinosa;29316;unknown;4;;1;BIOPOP April 2005;;4;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Prunus spinosa;29316;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus spinosa;29316;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus spinosa;29316;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;4;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrus cordata;29323;observation (like obvious taxonomical traits);3.5;;1;ECOFLORA - database of the ecological flora of the british isles;;4;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pyrus cordata;29323;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa obtusifolia;29327;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa obtusifolia;29327;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla inclinata;29340;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla recta;29347;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla recta;29347;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla recta;29349;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fragaria viridis;29358;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fragaria viridis;29358;actual measurement (following LEDA data standards);.04;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.05;.09;.03;;;;;;SWEDEN;unknown Geum rivale;29366;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geum rivale;29366;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geum rivale;29366;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Malus sylvestris;29369;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;10;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malus sylvestris;29369;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Malus sylvestris;29369;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla crantzii;29387;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla crantzii;29387;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.5;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla crantzii;29387;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla crantzii;29387;actual measurement (following LEDA data standards);.03;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.05;.02;;;;;;NORWAY;unknown Amelanchier ovalis;29390;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aphanes arvensis;29391;observation (like obvious taxonomical traits);.11;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aphanes arvensis;29391;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aphanes arvensis;29391;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aremonia agrimonoides;29395;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aremonia agrimonoides;29395;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Aremonia agrimonoides;29395;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crataegus calycina;29408;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filipendula vulgaris;29429;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Filipendula vulgaris;29429;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Filipendula vulgaris;29429;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla monticola;29465;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Alchemilla monticola;29465;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla glaucescens;29479;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Spiraea media;29507;derivation from photos or drawings;1.6;;1;BIOPOP April 2005;;1.6;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spiraea salicifolia;29508;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Spiraea salicifolia;29508;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Agrimonia eupatoria;29512;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Agrimonia eupatoria;29512;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Agrimonia eupatoria;29512;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla acutiloba;29516;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;.65;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla alpina;29517;actual measurement;.082;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.082;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Alchemilla alpina;29517;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla alpina;29517;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla alpina;29517;actual measurement (following LEDA data standards);.06;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.09;.05;;;;;;NORWAY;unknown Alchemilla alpina;29517;actual measurement (following LEDA data standards);.07;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.19;.06;;;;;;NORWAY;unknown Sorbus eminens;29540;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus minima;29545;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus subcuneata;29550;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus torminalis;29551;actual measurement;12;1;1;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];;17;7;1;;;;Kjorup Rasmussen, Kristine (2004): Poor sexual reproduction on the distribution limit of the rare tree Sorbus torminalis [25];DENMARK;unknown Sorbus torminalis;29551;derivation from photos or drawings;7.5;;1;BIOPOP April 2005;;12;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus torminalis;29551;observation (like obvious taxonomical traits);25;;1;ECOFLORA - database of the ecological flora of the british isles;;25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus ulmifolius;29561;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus radula;29572;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus macrophyllus;29584;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus idaeus;29604;observation (like obvious taxonomical traits);1.3;;1;ECOFLORA - database of the ecological flora of the british isles;;1.6;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus idaeus;29604;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus idaeus;29604;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa villosa;29630;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus mahaleb;29650;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Prunus mahaleb;29650;derivation from photos or drawings;4;;1;BIOPOP April 2005;;6;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrus communis;29660;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa agrestis;29667;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa agrestis;29667;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa agrestis;29667;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa foetida;29674;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;4;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla norvegica;29685;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla norvegica;29685;laboratory/greenhouse/garden experiment;.47;11;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.47;.66;.28;;;;;;GERMANY;no Potentilla norvegica;29685;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla norvegica;29685;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla rupestris;29693;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla rupestris;29693;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla rupestris;29693;unknown;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Wilson, G. B.(1995): Biological flora of the British Isles: Potentilla rupestris L. (Potentilla corsica Sieber ex Lehm).;;unknown Potentilla rupestris;29693;unknown;.7;;1;BIOPOP April 2005;;.7;;;;;;Wilson, G. B.(1995): Biological flora of the British Isles: Potentilla rupestris L. (Potentilla corsica Sieber ex Lehm).;;unknown Potentilla rupestris;29693;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla silesiaca;29694;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus cerasifera;29699;derivation from photos or drawings;5;;1;BIOPOP April 2005;;5;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus domestica;29700;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;6;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus domestica;29700;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus domestica;29700;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;6;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geum reptans;29707;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Physocarpus opulifolius;29711;derivation from photos or drawings;3;;1;BIOPOP April 2005;;3;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla anserina;29712;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Stockholm University, Dept. Of Botany, SE, (Eriksson), E-Mail: ove.eriksson@botan.su.se;;unknown Potentilla anserina;29712;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla anserina;29712;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Stockholm University, Dept. Of Botany, SE, (Eriksson), E-Mail: ove.eriksson@botan.su.se;;unknown Potentilla aurea;29716;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla fruticosa;29725;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Elkington, T. T.(1963): no title given, publication in Journal of Ecology issue: 51 pages: 769-781 [51];;unknown Potentilla fruticosa;29725;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla fruticosa;29725;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla heptaphylla;29728;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotoneaster horizontalis;29735;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cotoneaster nebrodensis;29737;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotoneaster simonsii;29738;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;4;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cotoneaster simonsii;29738;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crataegus laevigata;29749;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;10;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crataegus laevigata;29749;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crataegus laevigata;29749;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filipendula ulmaria;29764;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Filipendula ulmaria;29764;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Filipendula ulmaria;29764;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla conjuncta;29802;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla fissa;29811;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla versipila;29844;derivation from photos or drawings;.17;;1;BIOPOP April 2005;;.3;.04;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Amelanchier spicata;29852;derivation from photos or drawings;4.5;;1;BIOPOP April 2005;;8;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa tomentosa;29878;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa tomentosa;29878;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa tomentosa;29878;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus saxatilis;29888;observation (like obvious taxonomical traits);.24;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus saxatilis;29888;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus saxatilis;29888;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrimonia procera;29916;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.5;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus pseudofennica;29919;observation (like obvious taxonomical traits);7;;1;ECOFLORA - database of the ecological flora of the british isles;;7;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Prunus persica;29943;derivation from photos or drawings;8;;1;BIOPOP April 2005;;8;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus laurocerasus;29962;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;6;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus laurocerasus;29962;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus laurocerasus;29962;unknown;6;;1;BIOPOP April 2005;;6;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Sorbus leyana;29965;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla micrantha;29976;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crataegus monogyna;29980;field experiment;1.54;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;1.54;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Crataegus monogyna;29980;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;10;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crataegus monogyna;29980;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;;2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crataegus monogyna;29980;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geum montanum;29982;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa multiflora;29985;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus intermedia;30014;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus intermedia;30014;derivation from photos or drawings;6.5;;1;BIOPOP April 2005;;10;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kerria japonica;30016;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus devoniensis;30039;observation (like obvious taxonomical traits);15;;1;ECOFLORA - database of the ecological flora of the british isles;;15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Malus domestica;30045;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Malus domestica;30045;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa elliptica;30050;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spiraea chamaedryfolia;30069;derivation from photos or drawings;2;;1;BIOPOP April 2005;;2;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus chamaemorus;30071;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus chamaemorus;30071;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus chamaemorus;30071;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus aria;30087;derivation from photos or drawings;6.5;;1;BIOPOP April 2005;;10;3;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Sorbus aria;30087;observation (like obvious taxonomical traits);15;;1;ECOFLORA - database of the ecological flora of the british isles;;15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus arranensis;30090;observation (like obvious taxonomical traits);7.5;;1;ECOFLORA - database of the ecological flora of the british isles;;7.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rubus caesius;30108;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Rubus caesius;30108;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla alba;30128;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sanguisorba officinalis;30139;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sanguisorba officinalis;30139;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.8;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sanguisorba officinalis;30139;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus bristoliensis;30146;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;10;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus wilmottiana;30159;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rubus pyramidalis;30180;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus guentheri;30206;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus koehleri;30214;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus bifrons;30235;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus canescens;30240;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa caesia;30273;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa caesia;30273;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa caesia;30273;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa corymbifera;30277;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla tabernaemontani;30295;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla tabernaemontani;30295;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla tabernaemontani;30295;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla thuringiaca;30298;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus fruticosa;30304;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus padus;30306;observation (like obvious taxonomical traits);9;;1;ECOFLORA - database of the ecological flora of the british isles;;15;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus padus;30306;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus padus;30306;derivation from photos or drawings;12;;1;BIOPOP April 2005;;12;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus virginiana;30310;unknown;10;;1;BIOPOP April 2005;;10;;;;;;Mulligan, G. A. (1981): The biology of Canadian weeds. 51. Prunus virginiana L. and P. serotina Ehrh.;;unknown Potentilla brauniana;30315;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla clusiana;30319;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla palustris;30328;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla palustris;30328;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla palustris;30328;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fragaria moschata;30348;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fragaria moschata;30348;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mespilus germanica;30357;observation (like obvious taxonomical traits);9;;1;ECOFLORA - database of the ecological flora of the british isles;;9;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Mespilus germanica;30357;derivation from photos or drawings;3.75;;1;BIOPOP April 2005;;6;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla subcrenata;30359;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla xanthochlora;30366;derivation from photos or drawings;.415;;1;BIOPOP April 2005;;.7;.13;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Crataegus crus-galli;30375;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla filicaulis;30404;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla filicaulis;30404;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sorbus chamaemespilus;30433;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sorbus leptophylla;30439;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus rupicola;30443;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sibbaldia procumbens;30472;actual measurement;.043;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.043;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Sibbaldia procumbens;30472;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.04;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.03;.02;;;;;;NORWAY;unknown Sibbaldia procumbens;30472;actual measurement (following LEDA data standards);.03;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.05;.03;;;;;;NORWAY;unknown Sibbaldia procumbens;30472;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;.03;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sibbaldia procumbens;30472;observation (like obvious taxonomical traits);.01;;1;ECOFLORA - database of the ecological flora of the british isles;;;.01;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus scissus;30481;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus sprengelii;30484;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus nessensis;30492;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus phoenicolasius;30497;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rubus hypomalacus;30504;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus divaricatus;30517;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa stylosa;30546;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;4;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa stylosa;30546;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;3;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa stylosa;30546;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa micrantha;30571;field experiment;1.46;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;1.46;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Rosa micrantha;30571;derivation from photos or drawings;2.15;;1;BIOPOP April 2005;;3.5;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa micrantha;30571;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa micrantha;30571;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa pendulina;30578;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla sterilis;30583;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla sterilis;30583;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla sterilis;30583;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus armeniaca;30585;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;5;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla cinerea;30603;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium alpinum;30615;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla reptans;30622;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla reptans;30622;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla reptans;30622;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fragaria vesca;30633;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fragaria vesca;30633;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fragaria vesca;30633;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geum urbanum;30638;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Geum urbanum;30638;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Geum urbanum;30638;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla argentea;30642;derivation from photos or drawings;.46;;1;BIOPOP April 2005;;.46;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Potentilla argentea;30642;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.28;.19;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Potentilla argentea;30642;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;;.09;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Potentilla argentea;30642;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla argentea;30642;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla glomerulans;30703;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Sorbus lancastriensis;30724;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus vexans;30730;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus hibernica;30764;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;6;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rubus sulcatus;30776;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;3.5;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus opacus;30780;derivation from photos or drawings;2;;1;BIOPOP April 2005;;2.5;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus infestus;30791;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus montanus;30802;derivation from photos or drawings;2;;1;BIOPOP April 2005;;2.5;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus gratus;30810;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa gallica;30842;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa rugosa;30857;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla intermedia;30887;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla intermedia;30887;laboratory/greenhouse/garden experiment;.39;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.37;.44;.26;;;;;;GERMANY;no Potentilla leucopolitana;30888;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla rhenana;30897;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla thyrsiflora;30901;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla caulescens;30919;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla erecta;30927;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla erecta;30927;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla erecta;30927;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cotoneaster integerrimus;30932;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cydonia oblonga;30948;derivation from photos or drawings;3.6;;1;BIOPOP April 2005;;6;1.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cydonia oblonga;30948;unknown;4.5;;1;BIOPOP April 2005;;6;3;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Alchemilla wichurae;30964;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Alchemilla minima;30969;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla glabra;30979;derivation from photos or drawings;.245;;1;BIOPOP April 2005;;.45;.04;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Alchemilla glabra;30979;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Alchemilla glabra;30979;actual measurement (following LEDA data standards);.04;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.06;.03;;;;;;NORWAY;unknown Alchemilla glabra;30979;actual measurement (following LEDA data standards);.03;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.06;.01;;;;;;NORWAY;unknown Acaena anserinifolia;31004;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Sorbus porrigentiformis;31012;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubus vulgaris;31026;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus scaber;31044;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus silvaticus;31048;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus odoratus;31060;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus pallidus;31062;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus plicatus;31066;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa jundzillii;31124;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa majalis;31125;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa mollis;31128;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa mollis;31128;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa sherardii;31137;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Rosa sherardii;31137;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pyrus pyraster;31153;derivation from photos or drawings;20;;1;BIOPOP April 2005;;20;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rosa arvensis;31158;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa arvensis;31158;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rosa arvensis;31158;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;3;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla supina;31183;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Prunus avium;31189;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus avium;31189;unknown;17.5;;1;BIOPOP April 2005;;20;15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Prunus avium;31189;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Prunus avium;31189;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Prunus avium;31189;derivation from photos or drawings;13.5;;1;BIOPOP April 2005;;25;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potentilla anglica;31198;observation (like obvious taxonomical traits);.475;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla anglica;31198;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Potentilla anglica;31198;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aruncus dioicus;31209;derivation from photos or drawings;.925;;1;BIOPOP April 2005;;1.2;.65;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryas octopetala;31232;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Dryas octopetala;31232;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryas octopetala;31232;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sarracenia purpurea;31302;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sarracenia purpurea;31302;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chrysosplenium alternifolium;31308;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Chrysosplenium alternifolium;31308;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.2;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chrysosplenium oppositifolium;31313;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chrysosplenium oppositifolium;31313;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chrysosplenium oppositifolium;31313;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga aizoides;31321;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga aizoides;31321;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga aizoides;31321;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.2;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga aizoides;31321;actual measurement (following LEDA data standards);.02;2;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.03;.02;;;;;;NORWAY;unknown Saxifraga androsacea;31324;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga aphylla;31325;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga biflora;31336;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga bryoides;31348;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga caesia;31354;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga cernua;31373;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga cernua;31373;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga cespitosa;31375;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga cespitosa;31375;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga granulata;31381;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga granulata;31381;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga granulata;31381;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hypnoides;31390;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hypnoides;31390;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hypnoides;31390;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.1;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga stellaris;31429;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Saxifraga stellaris;31429;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.04;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga hirculus;31463;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hirculus;31463;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hirculus;31463;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga hirsuta;31464;observation (like obvious taxonomical traits);.21;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga hirsuta;31464;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;;.12;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga mutata;31509;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga nivalis;31524;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga nivalis;31524;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga oppositifolia;31526;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga paniculata;31528;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga rivularis;31573;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga rivularis;31573;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga rosacea;31574;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga rosacea;31574;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga rosacea;31574;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga rotundifolia;31582;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga spathularis;31600;observation (like obvious taxonomical traits);.24;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga spathularis;31600;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga tridactylites;31616;observation (like obvious taxonomical traits);.085;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga tridactylites;31616;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Saxifraga tridactylites;31616;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.07;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tellima grandiflora;31626;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Tolmiea menziesii;31628;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Ruta graveolens;31663;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dictamnus albus;31688;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium sylvaticum;31699;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.95;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium sylvaticum;31699;laboratory/greenhouse/garden experiment;.42;18;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.44;.6;.35;;;;;;GERMANY;no Galium tricornutum;31719;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium tricornutum;31719;laboratory/greenhouse/garden experiment;.63;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.65;.74;.45;;;;;;GERMANY;no Galium uliginosum;31724;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium uliginosum;31724;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium uliginosum;31724;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium verum;31730;observation (like obvious taxonomical traits);.575;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium verum;31730;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium verum;31730;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubia peregrina;31737;field experiment;.094;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.094;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Rubia peregrina;31737;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rubia peregrina;31737;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium pumilum;31750;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium pumilum;31750;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium pumilum;31750;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.6;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium pumilum;31750;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium saxatile;31769;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium saxatile;31769;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium saxatile;31769;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium spurium;31775;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium sterneri;31777;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium sterneri;31777;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium mollugo;31782;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium noricum;31798;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium odoratum;31805;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium odoratum;31805;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium odoratum;31805;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium palustre;31813;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium palustre;31813;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium palustre;31813;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium palustre;31813;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.75;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium palustre;31813;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium parisiense;31817;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium parisiense;31817;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium parisiense;31817;laboratory/greenhouse/garden experiment;.38;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.47;.32;;;;;;GERMANY;no Galium parisiense;31817;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium lucidum;31829;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cruciata glabra;31855;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium glaucum;31858;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium debile;31886;observation (like obvious taxonomical traits);.275;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium debile;31886;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Asperula cynanchica;31904;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Asperula cynanchica;31904;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Asperula cynanchica;31904;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Asperula cynanchica;31904;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium boreale;31917;observation (like obvious taxonomical traits);.325;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium boreale;31917;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium boreale;31917;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium album;31949;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Galium album;31949;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Galium aparine;31956;observation (like obvious taxonomical traits);.675;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium aparine;31956;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium aparine;31956;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Galium aristatum;31963;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sherardia arvensis;31967;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sherardia arvensis;31967;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Sherardia arvensis;31967;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium rotundifolium;32103;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium schultesii;32114;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1.1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cruciata laevipes;32133;observation (like obvious taxonomical traits);.375;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cruciata laevipes;32133;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cruciata laevipes;32133;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium megalospermum;32146;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium verrucosum;32204;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galium verrucosum;32204;laboratory/greenhouse/garden experiment;.08;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.09;.14;.06;;;;;;GERMANY;no Asperula tinctoria;32329;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asperula arvensis;32387;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium pyrenaicum;32417;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium rostratum;32423;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium alpinum;32434;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium linophyllon;32439;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium bavarum;32443;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium ebracteatum;32461;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thesium humifusum;32462;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thesium humifusum;32462;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix triandra;32478;observation (like obvious taxonomical traits);7;;1;ECOFLORA - database of the ecological flora of the british isles;;10;4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix triandra;32478;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;4;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix triandra;32478;observation (like obvious taxonomical traits);4;;1;ECOFLORA - database of the ecological flora of the british isles;;;4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix viminalis;32486;observation (like obvious taxonomical traits);4.5;;1;ECOFLORA - database of the ecological flora of the british isles;;6;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix viminalis;32486;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix viminalis;32486;derivation from photos or drawings;4;;1;BIOPOP April 2005;;5;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix waldsteiniana;32488;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix starkeana;32511;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix purpurea;32526;observation (like obvious taxonomical traits);2.25;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix purpurea;32526;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;1.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix purpurea;32526;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix repens;32533;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Salix repens;32533;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix reticulata;32535;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix reticulata;32535;actual measurement (following LEDA data standards);.03;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.04;.03;;;;;;NORWAY;unknown Salix reticulata;32535;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix reticulata;32535;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix retusa;32536;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix lanata;32548;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix lanata;32548;actual measurement (following LEDA data standards);.68;1;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.68;.68;.68;;;;;;NORWAY;unknown Salix lanata;32548;actual measurement (following LEDA data standards);.27;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.27;.38;.14;;;;;;NORWAY;unknown Salix lapponum;32550;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix lapponum;32550;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix lapponum;32550;actual measurement (following LEDA data standards);.92;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.88;1.12;.54;;;;;;NORWAY;unknown Salix myrsinites;32555;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix myrsinites;32555;actual measurement (following LEDA data standards);.29;1;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.29;.29;.29;;;;;;NORWAY;unknown Salix myrsinites;32555;actual measurement (following LEDA data standards);.14;15;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.14;.19;.09;;;;;;NORWAY;unknown Salix myrtilloides;32557;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix myrsinifolia;32559;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix myrsinifolia;32559;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;4;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix myrsinifolia;32559;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix aurita;32563;observation (like obvious taxonomical traits);1.75;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix aurita;32563;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix aurita;32563;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;3;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix cinerea;32565;derivation from photos or drawings;2.75;;1;BIOPOP April 2005;;4;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix pentandra;32567;observation (like obvious taxonomical traits);6;;1;ECOFLORA - database of the ecological flora of the british isles;;7;5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix pentandra;32567;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;;5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix pentandra;32567;derivation from photos or drawings;8;;1;BIOPOP April 2005;;12;4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix phylicifolia;32568;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;3;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix phylicifolia;32568;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;;1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix fragilis;32570;derivation from photos or drawings;9.5;;1;BIOPOP April 2005;;15;4;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Salix fragilis;32570;observation (like obvious taxonomical traits);12.5;;1;ECOFLORA - database of the ecological flora of the british isles;;15;10;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix fragilis;32570;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;;10;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix glabra;32571;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix glauca;32573;actual measurement (following LEDA data standards);.47;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.57;.96;.36;;;;;;NORWAY;unknown Salix hastata;32577;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix bicolor;32585;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix herbacea;32589;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix herbacea;32589;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.05;.01;;;;;;NORWAY;unknown Salix herbacea;32589;actual measurement (following LEDA data standards);.03;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.02;.04;.01;;;;;;NORWAY;unknown Salix herbacea;32589;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix caprea;32596;observation (like obvious taxonomical traits);6.5;;1;ECOFLORA - database of the ecological flora of the british isles;;10;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix caprea;32596;unknown;9;;1;BIOPOP April 2005;;9;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Salix caprea;32596;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;8;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix caprea;32596;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;;3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix daphnoides;32605;derivation from photos or drawings;6.5;;1;BIOPOP April 2005;;10;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix elaeagnos;32607;derivation from photos or drawings;4.5;;1;BIOPOP April 2005;;6;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix breviserrata;32633;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix alba;32638;observation (like obvious taxonomical traits);17.5;;1;ECOFLORA - database of the ecological flora of the british isles;;25;10;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix alba;32638;derivation from photos or drawings;18;;1;BIOPOP April 2005;;30;6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix alba;32638;observation (like obvious taxonomical traits);10;;1;ECOFLORA - database of the ecological flora of the british isles;;;10;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Salix alpina;32645;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix appendiculata;32649;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;9;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix arbuscula;32652;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;.7;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Populus nigra;32673;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Populus nigra;32673;derivation from photos or drawings;20;;1;BIOPOP April 2005;;25;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Populus tremula;32680;observation (like obvious taxonomical traits);20;;1;ECOFLORA - database of the ecological flora of the british isles;;20;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Populus tremula;32680;derivation from photos or drawings;17.5;;1;BIOPOP April 2005;;25;10;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Populus tremula;32680;unknown;10;;1;BIOPOP April 2005;;10;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Populus tremula;32680;unknown;20;;1;BIOPOP April 2005;;30;10;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Populus tremula;32680;unknown;30;;1;BIOPOP April 2005;;30;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Populus trichocarpa;32682;derivation from photos or drawings;20;;1;BIOPOP April 2005;;30;10;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix acutifolia;32683;derivation from photos or drawings;6.5;;1;BIOPOP April 2005;;10;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Populus x canadensis;32687;derivation from photos or drawings;22.5;;1;BIOPOP April 2005;;30;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Populus alba;32710;observation (like obvious taxonomical traits);24;;1;ECOFLORA - database of the ecological flora of the british isles;;24;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Populus alba;32710;derivation from photos or drawings;22.5;;1;BIOPOP April 2005;;30;15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica paniculata;32731;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.85;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica prostrata;32737;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica serpyllifolia;32740;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica serpyllifolia;32740;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica serpyllifolia;32740;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica spicata;32745;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica spicata;32745;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica anagallis-aquatica;32774;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica anagallis-aquatica;32774;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.75;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica anagallis-aquatica;32774;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica austriaca;32781;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica bellidioides;32788;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica chamaedrys;32792;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica chamaedrys;32792;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica chamaedrys;32792;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica chamaedrys s. chamaedrys;32793;derivation from photos or drawings;.17;;1;BIOPOP April 2005;;.26;.08;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Veronica fruticulosa;32798;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica longifolia;32803;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.05;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum nigrum;32834;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum nigrum;32834;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum nigrum;32834;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum phlomoides;32841;derivation from photos or drawings;1.125;;1;BIOPOP April 2005;;1.8;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum phlomoides;32841;laboratory/greenhouse/garden experiment;.85;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.86;.98;.67;;;;;;GERMANY;no Verbascum phoeniceum;32842;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum thapsus;32859;observation (like obvious taxonomical traits);1.15;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum thapsus;32859;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum thapsus;32859;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia nodosa;32862;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia nodosa;32862;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia nodosa;32862;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum blattaria;32871;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus minor;32892;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rhinanthus minor;32892;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Gibson, C. (unknown e-mail address);;unknown Rhinanthus minor;32892;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia canina;32910;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus alpinus;32931;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pedicularis sylvatica;32992;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis sylvatica;32992;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis sylvatica;32992;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Odontites lutea;33000;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Odontites verna;33007;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melampyrum cristatum;33028;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum cristatum;33028;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melampyrum cristatum;33028;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum sylvaticum;33044;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Melampyrum sylvaticum;33044;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linaria supina;33084;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria supina;33084;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria vulgaris;33091;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria vulgaris;33091;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linaria vulgaris;33091;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria arvensis;33100;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.25;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gratiola officinalis;33117;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kickxia elatine;33123;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Kickxia elatine;33123;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kickxia elatine;33123;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Kickxia spuria;33129;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Kickxia spuria;33129;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Kickxia spuria;33129;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia anglica;33135;observation (like obvious taxonomical traits);.105;;1;ECOFLORA - database of the ecological flora of the british isles;;.16;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia anglica;33135;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia arctica;33136;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia officinalis;33149;derivation from photos or drawings;.235;;1;BIOPOP April 2005;;.45;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia pseudokerneri;33153;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia rivularis;33156;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia rostkoviana;33157;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Digitalis grandiflora;33169;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.7;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Digitalis lutea;33173;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Digitalis purpurea;33178;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Digitalis purpurea;33178;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Digitalis purpurea;33178;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaenorhinum minus;33202;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chaenorhinum minus;33202;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chaenorhinum minus;33202;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cymbalaria muralis;33224;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anarrhinum bellidifolium;33247;unknown;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anarrhinum bellidifolium;33247;laboratory/greenhouse/garden experiment;.68;16;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.67;.8;.51;;;;;;GERMANY;no Antirrhinum majus;33261;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Antirrhinum majus;33261;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Antirrhinum majus;33261;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica peregrina;33270;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica peregrina;33270;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica peregrina;33270;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica spicata s. spicata;33276;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica triphyllos;33282;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica triphyllos;33282;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica triphyllos;33282;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica arvensis;33302;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica arvensis;33302;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica arvensis;33302;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica austriaca s. teucrium;33306;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica hederifolia;33317;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica acinifolia;33324;derivation from photos or drawings;.08;;1;BIOPOP April 2005;;.12;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica alpina;33325;actual measurement;.127;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.127;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Veronica alpina;33325;actual measurement (following LEDA data standards);.06;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.09;.01;;;;;;NORWAY;unknown Veronica alpina;33325;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.08;.01;;;;;;NORWAY;unknown Veronica alpina;33325;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica alpina;33325;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica alpina;33325;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum virgatum;33376;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia vernalis;33383;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia vernalis;33383;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia vernalis;33383;laboratory/greenhouse/garden experiment;1.17;18;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.18;1.36;.95;;;;;;GERMANY;no Scrophularia vernalis;33383;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.65;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tozzia alpina;33387;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia auriculata;33429;observation (like obvious taxonomical traits);.525;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia auriculata;33429;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia auriculata;33429;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus alectorolophus;33445;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus angustifolius;33452;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Rhinanthus angustifolius;33452;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus angustifolius;33452;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis foliosa;33474;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pedicularis lapponica;33481;actual measurement (following LEDA data standards);.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.1;.13;.08;;;;;;NORWAY;unknown Pedicularis rostratocapitata;33488;derivation from photos or drawings;.095;;1;BIOPOP April 2005;;.15;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pedicularis rostratospicata;33489;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parentucellia viscosa;33509;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Parentucellia viscosa;33509;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum pratense;33526;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum pratense;33526;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum pratense;33526;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lindernia dubia;33573;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lindernia procumbens;33575;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Limosella aquatica;33604;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Limosella aquatica;33604;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia nemorosa;33614;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.35;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia rotundifolia;33621;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia salisburgensis;33623;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia salisburgensis;33623;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.2;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia scottica;33625;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria spartea;33714;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica persica;33737;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica persica;33737;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica persica;33737;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica polita;33745;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Veronica polita;33745;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Veronica polita;33745;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica praecox;33746;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica praecox;33746;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica praecox;33746;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum pulverulentum;33747;observation (like obvious taxonomical traits);.85;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum pulverulentum;33747;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum pulverulentum;33747;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria purpurea;33748;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria purpurea;33748;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis recutita;33753;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linaria repens;33754;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria repens;33754;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Linaria repens;33754;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica montana;33758;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica montana;33758;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica montana;33758;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pedicularis oederi;33763;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pedicularis oederi;33763;actual measurement (following LEDA data standards);.03;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.04;.02;;;;;;NORWAY;unknown Veronica officinalis;33764;actual measurement;.118;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.118;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Veronica officinalis;33764;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica officinalis;33764;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica officinalis;33764;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis palustris;33771;observation (like obvious taxonomical traits);.34;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis palustris;33771;actual measurement (following LEDA data standards);.19;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.2;.3;.14;;;;;;NORWAY;unknown Pedicularis palustris;33771;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis palustris;33771;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum lychnitis;33779;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum lychnitis;33779;laboratory/greenhouse/garden experiment;1.24;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.22;1.47;.92;;;;;;GERMANY;no Verbascum lychnitis;33779;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbascum lychnitis;33779;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;1;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica filiformis;33807;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica dillenii;33829;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum densiflorum;33851;derivation from photos or drawings;1.375;;1;BIOPOP April 2005;;2.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbascum densiflorum;33851;laboratory/greenhouse/garden experiment;.83;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.77;.99;.5;;;;;;GERMANY;no Veronica beccabunga;33863;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica beccabunga;33863;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica beccabunga;33863;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica catenata;33875;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica catenata;33875;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica catenata;33875;actual measurement (following LEDA data standards);.25;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.26;.38;.17;;;;;;GERMANY;no Veronica catenata;33875;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hieracium amplexicaule;33881;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erinus alpinus;33899;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erinus alpinus;33899;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mimulus moschatus;34076;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mimulus moschatus;34076;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mimulus moschatus;34076;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia foulaensis;34091;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.06;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica agrestis;34127;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Veronica agrestis;34127;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mimulus guttatus;34136;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Mimulus guttatus;34136;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mimulus guttatus;34136;laboratory/greenhouse/garden experiment;.49;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.5;.56;.43;;;;;;GERMANY;no Mimulus guttatus;34136;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hieracium humile;34141;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia scorodonia;34168;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia scorodonia;34168;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;;.6;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica fruticans;34175;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica fruticans;34175;derivation from photos or drawings;.08;;1;BIOPOP April 2005;;.12;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica fruticans;34175;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica anagalloides;34184;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica anagalloides;34184;laboratory/greenhouse/garden experiment;.25;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.26;.34;.2;;;;;;GERMANY;no Hebe salicifolia;34193;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica urticifolia;34194;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia campbelliae;34200;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis verticillata;34203;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia marshallii;34204;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Misopates orontium;34219;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Misopates orontium;34219;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Misopates orontium;34219;laboratory/greenhouse/garden experiment;.33;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.33;.33;.33;;;;;;GERMANY;no Pedicularis sceptrum-carolinum;34226;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Limosella australis;34230;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;.05;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Euphrasia ostenfeldii;34242;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathraea squamaria;34252;observation (like obvious taxonomical traits);.19;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lathraea squamaria;34252;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia tetraquetra;34295;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia micrantha;34307;observation (like obvious taxonomical traits);.25;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia heslop-harrisonii;34309;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica scutellata;34347;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica scutellata;34347;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.45;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica scutellata;34347;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia umbrosa;34372;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Scrophularia umbrosa;34372;derivation from photos or drawings;.825;;1;BIOPOP April 2005;;1.2;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scrophularia umbrosa;34372;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica verna;34375;observation (like obvious taxonomical traits);.09;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Veronica verna;34375;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica verna;34375;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia cambrica;34385;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;.08;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pedicularis elongata;34389;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mimulus luteus;34406;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Veronica opaca;34421;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bartsia alpina;34451;actual measurement;.203;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.203;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Bartsia alpina;34451;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bartsia alpina;34451;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Bartsia alpina;34451;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Linaria alpina;34452;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veronica aphylla;34456;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melampyrum arvense;34460;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum arvense;34460;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Melampyrum arvense;34460;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Euphrasia confusa;34467;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia frigida;34486;actual measurement;.1;20;1;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];.1;;;1;;;;Eriksson, Ove(2003): Recruitment and life-history traits of sparse plant species in subalpine grasslands [81];NORWAY;unknown Euphrasia frigida;34486;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Euphrasia frigida;34486;actual measurement (following LEDA data standards);.01;1;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.01;.01;.01;;;;;;NORWAY;unknown Vitis vinifera;34500;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parthenocissus inserta;34510;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parthenocissus inserta;34510;unknown;10;;1;BIOPOP April 2005;;10;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Parthenocissus quinquefolia;34514;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Parthenocissus tricuspidata;34516;derivation from photos or drawings;10;;1;BIOPOP April 2005;;10;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ailanthus altissima;34523;observation (like obvious taxonomical traits);26;;1;ECOFLORA - database of the ecological flora of the british isles;;26;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Ailanthus altissima;34523;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ailanthus altissima;34523;unknown;25;;1;BIOPOP April 2005;;25;;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Tropaeolum majus;34544;derivation from photos or drawings;1.65;;1;BIOPOP April 2005;;3;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tropaeolum majus;34544;laboratory/greenhouse/garden experiment;.33;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.33;.4;.28;;;;;;GERMANY;no Daphne striata;34565;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thymelaea passerina;34584;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Daphne laureola;34606;observation (like obvious taxonomical traits);.7;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daphne laureola;34606;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;;.4;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daphne laureola;34606;unknown;1;;1;BIOPOP April 2005;;1;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Daphne laureola;34606;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Daphne mezereum;34610;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daphne mezereum;34610;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;;.5;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Daphne mezereum;34610;unknown;1;;1;BIOPOP April 2005;;1;;;;;;Cooper, M. R. (1984): Poisonous plants in Britain and their effects on animals and man;;unknown Daphne mezereum;34610;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Daphne cneorum;34621;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tilia platyphyllos;34634;observation (like obvious taxonomical traits);30;;1;ECOFLORA - database of the ecological flora of the british isles;;30;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Tilia platyphyllos;34634;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tilia tomentosa;34652;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Staphylea pinnata;34660;derivation from photos or drawings;5;;1;BIOPOP April 2005;;5;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tilia cordata;34664;observation (like obvious taxonomical traits);25;;1;ECOFLORA - database of the ecological flora of the british isles;;25;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Tilia cordata;34664;unknown;15;2;1;Niinemets, Ülo(1999): Energy requirement for foliage formation is not constant along canopy light gradients in temperate deciduous trees[141];15;19;14;1;2.828;2;;Niinemets, Ülo(1999): Energy requirement for foliage formation is not constant along canopy light gradients in temperate deciduous trees[141];ESTONIA;unknown Tilia cordata;34664;derivation from photos or drawings;25;;1;BIOPOP April 2005;;25;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trapa natans;34689;unknown;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Myricaria germanica;34699;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana pratensis;34760;derivation from photos or drawings;1.1;;1;BIOPOP April 2005;;1.1;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Valeriana pratensis;34760;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Valerianella eriocarpa;34768;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella eriocarpa;34768;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella eriocarpa;34768;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella locusta;34776;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella locusta;34776;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella locusta;34776;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella coronata;34784;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella coronata;34784;laboratory/greenhouse/garden experiment;.42;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.41;.44;.35;;;;;;GERMANY;no Valerianella rimosa;34795;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella rimosa;34795;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella rimosa;34795;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella rimosa;34795;laboratory/greenhouse/garden experiment;.19;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.19;.25;.12;;;;;;GERMANY;no Valeriana pyrenaica;34797;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valeriana repens;34799;derivation from photos or drawings;1.6;;1;BIOPOP April 2005;;1.6;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Valeriana repens;34799;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.15;.6;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Valeriana repens;34799;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;;.4;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Valeriana saxatilis;34804;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana supina;34809;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;.12;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana tripteris;34810;derivation from photos or drawings;.26;;1;BIOPOP April 2005;;.45;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana montana;34812;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella carinata;34818;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella carinata;34818;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valerianella carinata;34818;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella dentata;34825;observation (like obvious taxonomical traits);.235;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella dentata;34825;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valerianella dentata;34825;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana officinalis;34832;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana officinalis s. collina;34846;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Centranthus ruber;34865;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centranthus ruber;34865;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Centranthus ruber;34865;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.65;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana dioica;34884;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Valeriana dioica;34884;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Valeriana dioica;34884;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Datura stramonium;34907;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Datura stramonium;34907;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nicotiana tabacum;34910;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solanum triflorum;34912;observation (like obvious taxonomical traits);1;;1;ECOFLORA - database of the ecological flora of the british isles;;1;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Solanum tuberosum;34915;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.85;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nicotiana rustica;34935;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nicotiana rustica;34935;laboratory/greenhouse/garden experiment;.57;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.61;.9;.44;;;;;;GERMANY;no Hyoscyamus niger;34956;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Hyoscyamus niger;34956;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hyoscyamus niger;34956;laboratory/greenhouse/garden experiment;.6;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.52;.6;.36;;;;;;GERMANY;no Solanum nigrum;34958;observation (like obvious taxonomical traits);.6;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Solanum nigrum;34958;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.7;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nicandra physalodes;34982;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nicandra physalodes;34982;laboratory/greenhouse/garden experiment;.34;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.34;.54;.17;;;;;;GERMANY;no Lycium chinense;35031;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solanum dulcamara;35041;observation (like obvious taxonomical traits);1.15;;1;ECOFLORA - database of the ecological flora of the british isles;;2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Solanum dulcamara;35041;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Solanum dulcamara;35041;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopersicon esculentum;35044;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.5;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Solanum luteum s. alatum;35070;actual measurement (following LEDA data standards);.15;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.17;.23;.14;;;;;;GERMANY;no Physalis alkekengi;35072;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;1;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycium barbarum;35086;observation (like obvious taxonomical traits);2.5;;1;ECOFLORA - database of the ecological flora of the british isles;;2.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Lycium barbarum;35086;unknown;2;;1;BIOPOP April 2005;;3;1;;;;;Liebenow, H. (1981): Giftpflanzen;;unknown Lycium barbarum;35086;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atropa bella-donna;35087;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Verbena officinalis;35092;observation (like obvious taxonomical traits);.45;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbena officinalis;35092;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Verbena officinalis;35092;laboratory/greenhouse/garden experiment;.18;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.2;.33;.1;;;;;;GERMANY;no Verbena officinalis;35092;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parietaria officinalis;35137;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Soleirolia soleirolii;35142;observation (like obvious taxonomical traits);.125;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Soleirolia soleirolii;35142;observation (like obvious taxonomical traits);.05;;1;ECOFLORA - database of the ecological flora of the british isles;;;.05;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Urtica dioica;35149;observation (like obvious taxonomical traits);.9;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Urtica dioica;35149;unknown;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Greig-Smith, P. (1948): Biological flora of the British Isles: Urtica dioica L.;;unknown Urtica dioica;35149;unknown;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Greig-Smith, P. (1948): Biological flora of the British Isles: Urtica dioica L.;;unknown Urtica dioica;35149;unknown;1.8;;1;BIOPOP April 2005;;1.8;;;;;;Greig-Smith, P. (1948): Biological flora of the British Isles: Urtica dioica L.;;unknown Urtica dioica;35149;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Urtica dioica;35149;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Urtica kioviensis;35156;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Urtica kioviensis;35156;laboratory/greenhouse/garden experiment;.3;8;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.29;.32;.24;;;;;;GERMANY;no Urtica pilulifera;35157;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Urtica urens;35160;observation (like obvious taxonomical traits);.35;;1;ECOFLORA - database of the ecological flora of the british isles;;.6;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Urtica urens;35160;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Urtica urens;35160;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulmus procera;35163;observation (like obvious taxonomical traits);33;;1;ECOFLORA - database of the ecological flora of the british isles;;33;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Ulmus glabra;35180;observation (like obvious taxonomical traits);40;;1;ECOFLORA - database of the ecological flora of the british isles;;40;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulmus glabra;35180;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ulmus glabra;35180;derivation from photos or drawings;30;;1;BIOPOP April 2005;;30;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ulmus laevis;35184;derivation from photos or drawings;35;;1;BIOPOP April 2005;;35;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ulmus minor;35187;observation (like obvious taxonomical traits);40;;1;ECOFLORA - database of the ecological flora of the british isles;;40;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ulmus minor;35187;derivation from photos or drawings;20.5;;1;BIOPOP April 2005;;40;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola uliginosa;35203;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.1;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola tricolor;35219;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola rupestris;35233;observation (like obvious taxonomical traits);.06;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola rupestris;35233;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola rupestris;35233;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola suavis;35250;derivation from photos or drawings;.13;;1;BIOPOP April 2005;;.2;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola pumila;35256;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola reichenbachiana;35262;observation (like obvious taxonomical traits);.165;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola reichenbachiana;35262;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola reichenbachiana;35262;laboratory/greenhouse/garden experiment;.06;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.06;.1;.04;;;;;;GERMANY;no Viola reichenbachiana;35262;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola riviniana;35267;observation (like obvious taxonomical traits);.21;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola riviniana;35267;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola riviniana;35267;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola palustris;35276;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola persicifolia;35285;observation (like obvious taxonomical traits);.175;;1;ECOFLORA - database of the ecological flora of the british isles;;.25;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola persicifolia;35285;observation (like obvious taxonomical traits);.1;;1;ECOFLORA - database of the ecological flora of the british isles;;;.1;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola persicifolia;35285;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola mirabilis;35297;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola odorata;35309;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Viola odorata;35309;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola kitaibeliana;35323;observation (like obvious taxonomical traits);.065;;1;ECOFLORA - database of the ecological flora of the british isles;;.1;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola kitaibeliana;35323;observation (like obvious taxonomical traits);.03;;1;ECOFLORA - database of the ecological flora of the british isles;;;.03;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola lactea;35326;observation (like obvious taxonomical traits);.12;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola lactea;35326;observation (like obvious taxonomical traits);.04;;1;ECOFLORA - database of the ecological flora of the british isles;;;.04;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola lutea;35331;observation (like obvious taxonomical traits);.135;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola lutea;35331;observation (like obvious taxonomical traits);.07;;1;ECOFLORA - database of the ecological flora of the british isles;;;.07;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola elatior;35336;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola epipsila;35340;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola hirta;35355;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola collina;35356;derivation from photos or drawings;.08;;1;BIOPOP April 2005;;.1;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola cornuta;35360;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Viola calcarata;35380;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.05;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola canina;35384;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola canina s. canina;35385;actual measurement (following LEDA data standards);1.325;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);1.365;1.9;1;;;;;;NORWAY;unknown Viola canina s. montana;35386;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola ambigua;35399;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola arvensis;35403;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.45;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola arvensis;35403;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola arvensis;35403;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Viola biflora;35415;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola calaminaria;35419;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Viola alba;35426;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leucojum aestivum;35586;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.6;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagittaria sagittifolia;35605;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sagittaria sagittifolia;35605;actual measurement (following LEDA data standards);.39;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.39;.45;.35;;;;;;GERMANY;no Caldesia parnassifolia;35608;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alisma plantago-aquatica;35609;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Baldellia ranunculoides;35614;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Butomus umbellatus;35620;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alisma gramineum;35625;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.2;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alisma lanceolatum;35630;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luronium natans;35649;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Galanthus nivalis;35672;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Narcissus pseudonarcissus;35717;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leucojum vernum;35768;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Acorus calamus;35825;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arum maculatum;35847;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Arum maculatum;35847;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.25;.12;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Calla palustris;35879;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus castaneus;35925;actual measurement (following LEDA data standards);.09;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.11;.08;;;;;;NORWAY;unknown Juncus atratus;35939;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.95;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus balticus;35943;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus biglumis;35947;actual measurement (following LEDA data standards);.08;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.08;.14;.06;;;;;;NORWAY;unknown Juncus anceps;35959;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus articulatus;35965;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus acutiflorus;35974;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus compressus;36003;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus conglomeratus;36007;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus conglomeratus;36007;actual measurement (following LEDA data standards);.84;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.83;.92;.73;;;;;;GERMANY;no Juncus effusus;36014;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus filiformis;36023;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus bulbosus;36026;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus bulbosus;36026;actual measurement (following LEDA data standards);.04;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.03;.04;.02;;;;;;GERMANY;no Hieracium bupleuroides;36033;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus capitatus;36042;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus pygmaeus;36048;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus ranarius;36052;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus inflexus;36061;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus jacquinii;36077;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus gerardi;36081;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus tenageia;36111;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus tenuis;36112;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus tenuis;36112;actual measurement (following LEDA data standards);.54;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.54;.62;.46;;;;;;GERMANY;no Juncus sphaerocarpus;36141;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus squarrosus;36142;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus squarrosus;36142;actual measurement (following LEDA data standards);.11;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.11;.17;.08;;;;;;GERMANY;no Juncus stygius;36147;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus subnodulosus;36148;derivation from photos or drawings;.725;;1;BIOPOP April 2005;;1;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus maritimus;36160;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula desvauxii;36174;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.55;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula glabrata;36175;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula forsteri;36181;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula alpinopilosa;36187;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus trifidus;36209;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus trifidus;36209;actual measurement (following LEDA data standards);.12;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;.3;.06;;;;;;NORWAY;unknown Juncus trifidus;36209;actual measurement (following LEDA data standards);.16;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.17;.29;.07;;;;;;NORWAY;unknown Juncus trifidus s. monanthos;36211;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Juncus triglumis;36216;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula pilosa;36230;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula spicata;36240;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula spicata;36240;actual measurement (following LEDA data standards);.04;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.12;.02;;;;;;NORWAY;unknown Luzula sudetica;36244;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula sudetica;36244;actual measurement (following LEDA data standards);.03;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.07;.02;;;;;;NORWAY;unknown Luzula multiflora;36245;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula multiflora;36245;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula multiflora;36245;actual measurement (following LEDA data standards);.1;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.15;.02;;;;;;NORWAY;unknown Luzula nivea;36256;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;.9;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula luzulina;36269;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula luzuloides;36273;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Luzula campestris;36280;derivation from photos or drawings;.38;;1;BIOPOP April 2005;;.38;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Luzula campestris;36280;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.28;.04;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Luzula sylvatica;36284;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hydrocharis morsus-ranae;36302;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hydrocharis morsus-ranae;36302;actual measurement (following LEDA data standards);.01;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.02;.08;0;;;;;;GERMANY;no Stratiotes aloides;36308;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Triglochin maritima;36323;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Triglochin palustris;36324;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tamus communis;36357;derivation from photos or drawings;2.25;;1;BIOPOP April 2005;;3;1.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crocus chrysanthus;36411;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Crocus flavus;36422;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium glaucum;36455;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gladiolus communis;36560;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gladiolus imbricatus;36569;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gladiolus palustris;36576;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris aphylla;36597;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris germanica;36614;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris graminea;36621;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris x lurida;36640;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris pseudacorus;36664;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris pumila;36669;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris sibirica;36687;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris spuria;36693;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris variegata;36717;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.2;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Iris versicolor;36721;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.95;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sisyrinchium montanum;36805;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lemna gibba;36873;unknown;.0045;;1;BIOPOP April 2005;;.006;.003;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lemna minor;36875;unknown;.004;;1;BIOPOP April 2005;;.006;.002;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lemna trisulca;36878;unknown;.005;;1;BIOPOP April 2005;;.01;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spirodela polyrhiza;36882;unknown;.0075;;1;BIOPOP April 2005;;.01;.005;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Wolffia arrhiza;36885;unknown;.001;;1;BIOPOP April 2005;;.001;;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Wolffia arrhiza;36885;actual measurement (following LEDA data standards);0;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;0;0;0;;;;;;GERMANY;no Eleocharis parvula;36888;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.08;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex divulsa subsp. leersii;36954;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex muricata subsp. lamprocarpa;36969;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex scandinavica;37016;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus maritimus;37054;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus mucronatus;37055;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus radicans;37062;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus setaceus;37063;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus supinus;37065;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus sylvaticus;37067;derivation from photos or drawings;.775;;1;BIOPOP April 2005;;.95;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis multicaulis;37116;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis ovata;37118;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis palustris;37120;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis uniglumis;37127;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eriophorum scheuchzeri;37141;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kobresia myosuroides;37150;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Kobresia simpliciuscula;37154;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhynchospora alba;37156;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex supina;37169;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex tomentosa;37173;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex trinervis;37174;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex vesicaria;37183;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cyperus longus;37214;derivation from photos or drawings;.85;;1;BIOPOP April 2005;;1.2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cyperus longus;37214;laboratory/greenhouse/garden experiment;.27;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.26;.32;.16;;;;;;GERMANY;no Carex muricata;37224;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex nigra;37228;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex nigra;37228;actual measurement (following LEDA data standards);.07;1;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.07;.07;;;;;;NORWAY;unknown Carex norvegica;37233;actual measurement (following LEDA data standards);.05;8;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.12;.04;;;;;;NORWAY;unknown Carex ovalis;37242;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex ovalis;37242;derivation from photos or drawings;.27;;1;BIOPOP April 2005;;.4;.14;;;;;Aichele, D. (1988): Unsere Gräser: Süssgräser, Sauergräser, Binsen;GERMANY;unknown Carex pallescens;37247;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex panicea;37248;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex paniculata;37249;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pauciflora;37251;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pendula;37253;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pilosa;37256;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pseudocyperus;37263;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex riparia;37273;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex rostrata;37274;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex rupestris;37277;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex sempervirens;37283;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex spicata;37285;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex hallerana;37290;field experiment;.056;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.056;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Carex hallerana;37290;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex hirta;37296;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.8;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex hordeistichos;37299;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex hostiana;37300;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex lasiocarpa;37319;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex magellanica;37333;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex melanostachya;37342;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex microglochin;37344;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.08;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex montana;37346;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex atrofusca;37347;actual measurement (following LEDA data standards);.1;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.11;.14;.08;;;;;;NORWAY;unknown Carex atrofusca;37347;actual measurement (following LEDA data standards);.15;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Aarnes), corresponding adress: graciela.rusch@nina.no;.14;.2;.08;;;;;;NORWAY;unknown Carex bigelowii;37350;actual measurement (following LEDA data standards);.07;11;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.14;.04;;;;;;NORWAY;unknown Carex bigelowii;37350;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex brachystachys;37354;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex brizoides;37356;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex capitata;37361;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex caryophyllea;37362;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex demissa;37374;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex diandra;37377;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex dioica;37381;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex divulsa;37393;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex elata;37396;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Carex ericetorum;37398;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex extensa;37399;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex frigida;37406;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.3;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex fritschii;37407;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.65;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex fuliginosa;37408;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Blysmus compressus;37421;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Blysmus rufus;37423;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex acutiformis;37460;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1.2;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex alba;37462;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex appropinquata;37464;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex atrata;37469;actual measurement (following LEDA data standards);.09;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.12;.06;;;;;;NORWAY;unknown Scirpus cespitosus;37472;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus fluitans;37478;unknown;.025;;1;BIOPOP April 2005;;.05;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus holoschoenus;37480;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus hudsonianus;37482;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus hudsonianus;37482;actual measurement (following LEDA data standards);.09;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.09;.1;.08;;;;;;NORWAY;unknown Scirpus lacustris;37486;derivation from photos or drawings;2.5;;1;BIOPOP April 2005;;4;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus lacustris s. tabernaemontani;37488;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus pungens;37500;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus triqueter;37508;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scirpus triqueter;37508;actual measurement (following LEDA data standards);.45;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.46;.53;.39;;;;;;GERMANY;no Eleocharis mamillata;37523;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis quinqueflora;37539;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eriophorum angustifolium;37550;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.57;.28;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);.015;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.0146;.018;.008;;;;;;NORWAY;unknown Eriophorum angustifolium;37550;actual measurement (following LEDA data standards);.15;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;.18;.08;;;;;;NORWAY;unknown Eriophorum latifolium;37555;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.57;.28;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eriophorum latifolium;37555;actual measurement (following LEDA data standards);.1;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.11;.17;.06;;;;;;NORWAY;unknown Eriophorum vaginatum;37560;unknown;.4;1;1;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];;.5;.3;1;;;;Best, K. F.(1977): The biology of canadian weeds. 22. Descurania sophia (L.) Webb [57];UNITED KINGDOM;unknown Eriophorum vaginatum;37560;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhynchospora fusca;37574;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Schoenus ferrugineus;37576;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Schoenus nigricans;37577;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cladium mariscus;37586;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cyperus flavescens;37602;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.3;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cyperus flavescens;37602;laboratory/greenhouse/garden experiment;.12;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.14;.1;;;;;;GERMANY;no Cyperus fuscus;37606;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.25;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cyperus michelianus;37621;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis acicularis;37636;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleocharis austriaca;37639;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex saxatilis;37653;actual measurement (following LEDA data standards);.11;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.13;.2;.06;;;;;;NORWAY;unknown Carex saxatilis;37653;actual measurement (following LEDA data standards);.14;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.14;.19;.09;;;;;;NORWAY;unknown Carex secalina;37658;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex strigosa;37674;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.9;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex sylvatica;37678;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex umbrosa;37688;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex vaginata;37695;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.25;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex obtusata;37703;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex ornithopoda subsp. ornithopodioides;37709;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex parviflora;37728;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pilulifera;37739;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex praecox;37742;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pseudobrizoides;37749;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex pulicaris;37751;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.12;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex punctata;37752;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex remota;37756;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex repens;37757;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex limosa;37761;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex mucronata;37791;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex humilis;37847;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex lepidocarpa;37871;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;.7;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Carex lepidocarpa;37871;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Carex ligerica;37874;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.25;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex echinata;37888;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex ferruginea;37903;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex firma;37911;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex flacca;37912;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex flacca;37912;unknown;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Taylor, F. J. (1956): Biological flora of the British Isles: Carex flacca Schreb.;;unknown Carex brunnescens;37929;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex capillaris;37936;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex chordorrhiza;37947;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex curta;37950;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex davalliana;37956;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex depauperata;37963;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex digitata;37970;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex distans;37979;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex disticha;37982;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.65;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex acuta;38000;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex aquatilis;38015;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.4;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex arenaria;38017;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex atherodes;38021;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.2;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Carex bohemica;38039;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Veratrum album;38054;derivation from photos or drawings;.875;;1;BIOPOP April 2005;;1.3;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Paris quadrifolia;38073;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonatum multiflorum;38075;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonatum multiflorum;38075;laboratory/greenhouse/garden experiment;.34;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.35;.46;.21;;;;;;GERMANY;no Polygonatum odoratum;38076;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scilla amoena;38084;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scilla sibirica;38091;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scilla sibirica;38091;laboratory/greenhouse/garden experiment;.09;26;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.12;.9;.05;;;;;;GERMANY;no Muscari comosum;38147;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Narthecium ossifragum;38170;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hemerocallis fulva;38237;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthericum ramosum;38246;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthericum ramosum;38246;actual measurement (following LEDA data standards);.3;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.3;.3;.3;;;;;;GERMANY;no Allium victorialis;38350;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.45;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium angulosum;38373;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Streptopus amplexifolius;38421;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tulipa gesnerana;38429;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonatum verticillatum;38518;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Polygonatum verticillatum;38518;laboratory/greenhouse/garden experiment;.34;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.31;.37;.23;;;;;;GERMANY;no Hyacinthoides non-scripta;38541;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lloydia serotina;38558;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.1;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea minima;38642;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea pratensis;38646;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea spathacea;38650;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea spathacea;38650;actual measurement (following LEDA data standards);.2;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.2;.24;.17;;;;;;GERMANY;no Hemerocallis lilioasphodelus;38653;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asparagus officinalis;38660;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Colchicum autumnale;38684;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium scorodoprasum s. rotundum;38736;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium suaveolens;38745;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthericum liliago;38767;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium cepa;38778;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.9;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium oleraceum;38816;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium paradoxum;38827;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.35;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tofieldia calyculata;38841;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tofieldia pusilla;38843;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tofieldia pusilla;38843;actual measurement (following LEDA data standards);.03;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.07;.01;;;;;;NORWAY;unknown Tulipa sylvestris;38854;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithogalum orthophyllum;38899;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scilla bifolia;38937;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Muscari botryoides;38961;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Muscari tenuiflorum;38964;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Muscari neglectum;38976;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithogalum boucheanum;39000;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithogalum nutans;39001;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ornithogalum umbellatum;39006;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea lutea;39025;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hyacinthus orientalis;39050;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lilium bulbiferum;39057;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lilium martagon;39063;field experiment;.417;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.417;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Lilium martagon;39063;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.75;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Maianthemum bifolium;39069;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Convallaria majalis;39099;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fritillaria meleagris;39121;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea arvensis;39138;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gagea bohemica;39139;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium sativum;39214;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium schoenoprasum;39221;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium schoenoprasum;39221;laboratory/greenhouse/garden experiment;.34;23;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.35;.44;.28;;;;;;GERMANY;no Allium senescens;39230;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium sphaerocephalon;39232;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium ursinum;39243;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium vineale;39246;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium lineare;39287;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium porrum;39316;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium scorodoprasum;39339;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.7;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium carinatum;39360;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Allium fistulosum;39386;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aceras anthropophorum;39442;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anacamptis pyramidalis;39443;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cephalanthera damasonium;39459;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.45;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cephalanthera longifolia;39466;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cephalanthera longifolia;39466;actual measurement (following LEDA data standards);.18;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.18;.2;.16;;;;;;SWEDEN;unknown Cephalanthera rubra;39469;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chamorchis alpina;39472;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coeloglossum viride;39475;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cypripedium calceolus;39484;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dactylorhiza incarnata;39515;derivation from photos or drawings;.43;;1;BIOPOP April 2005;;.7;.16;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dactylorhiza sambucina;39567;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.2;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dactylorhiza traunsteineri;39579;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dactylorhiza traunsteineri s. lapponica;39600;actual measurement (following LEDA data standards);.07;25;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.09;.17;.05;;;;;;NORWAY;unknown Epipactis atrorubens;39603;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epipactis leptochila;39614;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epipactis microphylla;39620;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epipactis muelleri;39622;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.55;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epipactis palustris;39624;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Epipactis purpurata;39627;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Goodyera repens;39636;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gymnadenia conopsea;39638;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Gymnadenia odoratissima;39639;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hammarbya paludosa;39641;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Herminium monorchis;39643;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Himantoglossum hircinum;39644;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nigritella nigra subsp. rubra;39667;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ophrys apifera;39669;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ophrys fuciflora;39685;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ophrys insectifera;39703;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ophrys sphegodes;39719;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Orchis coriophora;39740;derivation from photos or drawings;.185;;1;BIOPOP April 2005;;.25;.12;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis laxiflora subsp. palustris;39750;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis mascula;39755;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis morio;39762;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.3;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis pallens;39766;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis tridentata;39779;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis ustulata;39783;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Platanthera bifolia;39786;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Platanthera chlorantha;39789;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Platanthera chlorantha;39789;actual measurement (following LEDA data standards);.09;10;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.1;.14;.06;;;;;;NORWAY;unknown Pseudorchis albida;39803;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Liparis loeselii;39943;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Liparis loeselii;39943;actual measurement (following LEDA data standards);.05;30;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.05;.07;.04;;;;;;GERMANY;no Listera cordata;39947;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Listera cordata;39947;actual measurement (following LEDA data standards);.06;7;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);.06;.06;.05;;;;;;NORWAY;unknown Listera ovata;39948;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Microstylis monophyllos;39949;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis militaris;40042;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis purpurea;40052;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Orchis purpurea;40052;actual measurement (following LEDA data standards);.24;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.24;.3;.15;;;;;;GERMANY;no Orchis simia;40058;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spiranthes aestivalis;40075;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spiranthes spiralis;40081;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Traunsteinera globosa;40086;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca rubra;40103;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;;.1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca rubra;40103;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.75;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca rubra;40103;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;.9;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca filiformis;40113;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glyceria maxima;40135;unknown;1.3;;1;BIOPOP April 2005;;1.8;.8;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Glyceria nemoralis;40136;unknown;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Festuca valesiaca;40152;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca duvalii;40163;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.35;.13;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca ovina;40171;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca ovina;40171;actual measurement (following LEDA data standards);.08;2;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.09;.07;;;;;;NORWAY;unknown Festuca nigrescens;40182;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca nigrescens;40182;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Conert, H. C. (2000): Pareys Gräserbuch: Die Gräser Deutschlands erkennen und bestimmen;GERMANY;unknown Festuca rupicola;40189;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.55;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elymus repens;40238;unknown;1.3;;1;BIOPOP April 2005;;1.3;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;GERMANY;unknown Elymus repens;40238;unknown;.2;;1;BIOPOP April 2005;;;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;GERMANY;unknown Elymus repens;40238;unknown;;;1;BIOPOP April 2005;;;;;;;;Werner, P. A. (1977): The biology of Canadian weeds. 24. Agropyron repens.;;unknown Festuca amethystina;40249;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.6;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca arundinacea;40254;unknown;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Calamagrostis purpurea;40263;actual measurement (following LEDA data standards);1.15;25;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Wilmann), E-Mail: (bodil.wilmann@nina.no);1.12;1.41;.84;;;;;;NORWAY;unknown Calamagrostis villosa;40268;actual measurement (following LEDA data standards);.35;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.35;.35;.35;;;;;;GERMANY;no Dactylis glomerata;40290;field experiment;.133;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.133;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Dactylis glomerata;40290;unknown;.775;;1;BIOPOP April 2005;;1.1;.45;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Deschampsia cespitosa;40299;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.75;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);.09;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.12;.23;.06;;;;;;NORWAY;unknown Deschampsia cespitosa;40299;actual measurement (following LEDA data standards);.09;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.09;.12;.07;;;;;;NORWAY;unknown Deschampsia cespitosa;40299;unknown;1.1;;1;BIOPOP April 2005;;2;.2;;;;;Davy, A. J. (1980): Biological flora of the British Isles: Deschampsia caespitosa (L.) Beauv.;;unknown Briza media;40342;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus erectus;40358;unknown;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Bromus japonicus;40365;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus japonicus;40365;laboratory/greenhouse/garden experiment;.36;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.39;.68;.2;;;;;;GERMANY;no Bromus squarrosus;40372;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus squarrosus;40372;laboratory/greenhouse/garden experiment;.64;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.64;.71;.56;;;;;;GERMANY;no Bromus sterilis;40373;unknown;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Agrostis rupestris;40377;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis schleicheri;40378;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alopecurus pratensis;40391;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.7;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ammophila arenaria;40398;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1;.6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arrhenatherum elatius;40414;unknown;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Arrhenatherum elatius;40414;unknown;1.2;;1;BIOPOP April 2005;1.2;;;;;;;Pfitzenmeyer, C. D. C. (1962): Biological flora of the British Isles: Arrhenatherum elatius (L.) J. & C. Presl.;;unknown Arrhenatherum elatius;40414;unknown;1.5;;1;BIOPOP April 2005;;1.5;;;;;;Pfitzenmeyer, C. D. C. (1962): Biological flora of the British Isles: Arrhenatherum elatius (L.) J. & C. Presl.;;unknown Arrhenatherum elatius;40414;unknown;1.8;;1;BIOPOP April 2005;;1.8;;;;;;Pfitzenmeyer, C. D. C. (1962): Biological flora of the British Isles: Arrhenatherum elatius (L.) J. & C. Presl.;;unknown Avena fatua;40425;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Agrostis alpina;40479;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis agrostiflora;40530;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis canina;40532;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alopecurus arundinaceus;40542;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.85;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthoxanthum aristatum;40551;derivation from photos or drawings;.145;;1;BIOPOP April 2005;;.25;.04;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;.15;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.14;.19;.06;;;;;;GERMANY;no Anthoxanthum aristatum;40551;laboratory/greenhouse/garden experiment;.19;22;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.19;.27;.13;;;;;;GERMANY;no Avena barbata;40564;field experiment;.18;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.18;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Avena strigosa;40565;laboratory/greenhouse/garden experiment;1.54;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.53;1.68;1.32;;;;;;GERMANY;no Avenula versicolor;40598;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus arvensis;40609;field experiment;.241;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.241;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Bromus arvensis;40609;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus arvensis;40609;laboratory/greenhouse/garden experiment;.43;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.43;.43;.43;;;;;;GERMANY;no Bromus secalinus;40610;laboratory/greenhouse/garden experiment;.87;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.89;1.27;.57;;;;;;GERMANY;no Bromus inermis;40620;unknown;.475;;1;BIOPOP April 2005;;.7;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Calamagrostis arundinacea;40633;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Cynosurus cristatus;40659;unknown;.4;;1;BIOPOP April 2005;;.55;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Cynosurus cristatus;40659;unknown;.49;;1;BIOPOP April 2005;.49;;;;;;;Lodge, R. W. (1959): Biological flora of the British Isles: Cynosurus cristatus.;;unknown Cynosurus cristatus;40659;unknown;.75;;1;BIOPOP April 2005;.75;;;;;;;Lodge, R. W. (1959): Biological flora of the British Isles: Cynosurus cristatus.;;unknown Danthonia alpina;40663;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Digitaria ischaemum;40681;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.35;.03;;;;;Kirchner, O. v.(1936): Lebensgeschichte der Blütenpflanzen Mitteleuropas;;unknown Digitaria ischaemum;40681;actual measurement (following LEDA data standards);.04;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.04;.05;.03;;;;;;GERMANY;no Digitaria ischaemum;40681;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Digitaria sanguinalis;40683;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Eleusine indica;40688;laboratory/greenhouse/garden experiment;.1;22;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.11;.16;.06;;;;;;GERMANY;no Eragrostis pilosa;40736;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca gigantea;40761;unknown;.975;;1;BIOPOP April 2005;;1.4;.55;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Festuca pallens;40789;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.2;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca rupicaprina;40796;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Glyceria fluitans;40814;unknown;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Agrostis gigantea;40852;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Agrostis gigantea;40852;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis mertensii;40856;actual measurement (following LEDA data standards);.06;12;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.09;.01;;;;;;NORWAY;unknown Aira caryophyllea;40866;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alopecurus aequalis;40867;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Apera spica-venti;40884;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.85;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Avenula pratensis;40921;unknown;.65;;1;BIOPOP April 2005;;1;.3;;;;;Dixon, J. M. (1991): Biological flora of the British Isles: Avenula (Dumort.) Dumort.;;unknown Avenula pubescens;40923;unknown;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Avenula pubescens;40923;unknown;.7;;1;BIOPOP April 2005;;1.1;.3;;;;;Dixon, J. M. (1991): Biological flora of the British Isles: Avenula (Dumort.) Dumort.;;unknown Bromus commutatus;40941;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.45;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus commutatus;40941;laboratory/greenhouse/garden experiment;.7;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.7;.98;.58;;;;;;GERMANY;no Bromus madritensis;40949;laboratory/greenhouse/garden experiment;.19;6;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.18;.23;.12;;;;;;GERMANY;no Bromus racemosus;40951;laboratory/greenhouse/garden experiment;.77;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.73;.92;.53;;;;;;GERMANY;no Calamagrostis canescens;40960;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Calamagrostis canescens;40960;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;1;.4;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Calamagrostis varia;40967;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.9;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Deschampsia media;40981;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Deschampsia setacea;40982;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Desmazeria rigida;40985;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca alpina;41025;derivation from photos or drawings;.05;;1;BIOPOP April 2005;;.07;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca curvula;41040;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;;.1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca curvula;41040;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca quadriflora;41067;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca trichophylla;41078;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.45;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Aegilops geniculata;41112;field experiment;.086;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.086;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Alopecurus myosuroides;41138;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Avena sativa;41151;unknown;1.05;;1;BIOPOP April 2005;;1.5;.6;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Avena sativa;41151;laboratory/greenhouse/garden experiment;.81;13;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.87;1.08;.65;;;;;;GERMANY;no Brachypodium pinnatum s. pinnatum;41177;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.8;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brachypodium sylvaticum;41179;unknown;.825;;1;BIOPOP April 2005;;1.1;.55;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Calamagrostis epigejos;41199;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.45;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cynodon dactylon;41221;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cynosurus echinatus;41222;unknown;.35;;1;BIOPOP April 2005;;.55;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Festuca brevipila;41305;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca heteropachys;41321;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Festuca pratensis;41343;unknown;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Gaudinia fragilis;41363;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis capillaris;41392;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis castellana;41393;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Avena sterilis;41440;laboratory/greenhouse/garden experiment;.27;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.27;.29;.25;;;;;;GERMANY;no Bromus brachystachys;41455;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus hordeaceus subsp. thominii;41461;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca altissima;41544;unknown;.75;;1;BIOPOP April 2005;;1;.5;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Festuca pannonica;41574;derivation from photos or drawings;.07;;1;BIOPOP April 2005;;;.07;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca pannonica;41574;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.22;.1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Aira praecox;41629;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aira praecox;41629;laboratory/greenhouse/garden experiment;.07;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.1;.7;.04;;;;;;GERMANY;no Alopecurus geniculatus;41635;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus tectorum;41688;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bromus tectorum;41688;laboratory/greenhouse/garden experiment;.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.4;.52;.36;;;;;;GERMANY;no Catabrosa aquatica;41695;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coleanthus subtilis;41701;derivation from photos or drawings;.03;;1;BIOPOP April 2005;;.04;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Corynephorus canescens;41702;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dichanthium ischaemum;41730;derivation from photos or drawings;.19;;1;BIOPOP April 2005;;.3;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elymus pycnanthus;41771;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Eragrostis minor;41786;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca airoides;41792;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.07;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca heterophylla;41814;unknown;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Festuca norica;41824;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.25;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca pulchella;41836;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Agrostis vinealis;41896;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alopecurus rendlei;41900;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Anthoxanthum alpinum;41906;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.3;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Anthoxanthum alpinum;41906;derivation from photos or drawings;.105;;1;BIOPOP April 2005;;.14;.07;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);.07;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.1;.04;;;;;;NORWAY;unknown Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);.07;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.09;.07;;;;;;NORWAY;unknown Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);.0068;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.0072;.0088;.0065;;;;;;NORWAY;unknown Anthoxanthum alpinum;41906;actual measurement (following LEDA data standards);.007;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.0066;.0095;.0035;;;;;;NORWAY;unknown Anthoxanthum odoratum;41907;derivation from photos or drawings;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Apera interrupta;41910;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Apera interrupta;41910;laboratory/greenhouse/garden experiment;.15;9;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.17;.24;.1;;;;;;GERMANY;no Deschampsia flexuosa;41982;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);.06;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.08;.14;.06;;;;;;NORWAY;unknown Deschampsia flexuosa;41982;actual measurement (following LEDA data standards);.04;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.08;.03;;;;;;NORWAY;unknown Festuca patzkei;42044;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca puccinellii;42048;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alopecurus bulbosus;42103;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.35;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Brachypodium pinnatum subsp. rupestre;42148;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.6;.4;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Bromus grossus;42156;laboratory/greenhouse/garden experiment;.2;7;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.25;.57;.14;;;;;;GERMANY;no Danthonia decumbens;42203;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Deschampsia littoralis;42211;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.3;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Echinochloa crus-galli;42222;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.85;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Elymus caninus;42231;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Eragrostis cilianensis;42261;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca guestfalica;42284;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;;.7;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca guestfalica;42284;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.45;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca guestfalica;42284;derivation from photos or drawings;.265;;1;BIOPOP April 2005;;.35;.18;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca longifolia;42295;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.2;.12;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca polesica;42303;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca pratensis s. apennina;42305;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.65;.15;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Festuca psammophila;42306;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Festuca vivipara;42318;actual measurement (following LEDA data standards);.07;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.06;.08;.04;;;;;;NORWAY;unknown Glyceria declinata;42323;derivation from photos or drawings;.29;;1;BIOPOP April 2005;;.5;.08;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Poa alpina;42327;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa alpina;42327;actual measurement (following LEDA data standards);.03;5;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.03;.04;.03;;;;;;NORWAY;unknown Poa nemoralis;42334;unknown;.5;;1;BIOPOP April 2005;;.75;.25;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Poa bulbosa;42340;derivation from photos or drawings;.11;;1;BIOPOP April 2005;;.15;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sclerochloa dura;42375;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sesleria caerulea;42378;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phalaris arundinacea;42396;derivation from photos or drawings;1.45;;1;BIOPOP April 2005;;2.2;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phleum alpinum;42401;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phleum alpinum;42401;actual measurement (following LEDA data standards);.05;3;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.05;.06;.05;;;;;;NORWAY;unknown Phleum alpinum;42401;actual measurement (following LEDA data standards);.08;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.07;.12;.03;;;;;;NORWAY;unknown Phleum pratense;42408;field experiment;.157;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.157;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Phleum pratense;42408;derivation from photos or drawings;.585;;1;BIOPOP April 2005;;.9;.27;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Phragmites australis;42412;unknown;2.5;;1;BIOPOP April 2005;;4;1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Phragmites australis;42412;unknown;2.5;;1;BIOPOP April 2005;;4;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hordeum murinum;42447;unknown;.225;;1;BIOPOP April 2005;;.35;.1;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Hordeum murinum;42447;laboratory/greenhouse/garden experiment;.39;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.38;.48;.3;;;;;;GERMANY;no Hordeum vulgare;42448;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;1.5;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Hordeum vulgare;42448;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;;.6;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Hordeum vulgare;42448;derivation from photos or drawings;1.15;;1;BIOPOP April 2005;;1.3;1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Hordeum vulgare;42448;laboratory/greenhouse/garden experiment;.78;3;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.79;.88;.7;;;;;;GERMANY;no Koeleria pyramidata;42453;unknown;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Koeleria vallesiana;42464;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melica ciliata;42479;field experiment;.36;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.36;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;yes Melica picta;42485;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Mibora minima;42486;derivation from photos or drawings;.035;;1;BIOPOP April 2005;;.05;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Molinia caerulea;42495;derivation from photos or drawings;1.05;;1;BIOPOP April 2005;;1.05;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Molinia caerulea;42495;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.7;.35;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Oreochloa disticha;42500;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hierochloe australis;42515;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trisetum flavescens;42564;unknown;.75;;1;BIOPOP April 2005;;1.3;.2;;;;;Dixon, J. M. (1995): Biological flora of the British Isles: Trisetum flavescens (L.) Beauv. (T. pratense Pers., Avena flavescens L.).;;unknown Trisetum flavescens;42564;unknown;.35;;1;BIOPOP April 2005;;.5;.2;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Trisetum distichophyllum;42565;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Trisetum spicatum;42579;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Holcus lanatus;42613;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Holcus mollis;42614;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hordelymus europaeus;42617;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Aichele, D. (1988): Unsere Gräser: Süssgräser, Sauergräser, Binsen;GERMANY;unknown Phleum arenarium;42667;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa pratensis;42677;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa angustifolia;42678;derivation from photos or drawings;.36;;1;BIOPOP April 2005;;.55;.17;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Poa cenisia;42681;unknown;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Poa compressa;42683;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa badensis;42692;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa subcaerulea;42699;derivation from photos or drawings;.27;;1;BIOPOP April 2005;;.27;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Poa subcaerulea;42699;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.18;.09;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Setaria italica;42741;unknown;.7;;1;BIOPOP April 2005;;1;.4;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Setaria italica;42741;laboratory/greenhouse/garden experiment;.87;15;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.88;.97;.77;;;;;;GERMANY;no Setaria viridis;42743;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.6;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Setaria viridis;42743;laboratory/greenhouse/garden experiment;.7;12;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.76;1.1;.5;;;;;;GERMANY;no Vulpia bromoides;42790;derivation from photos or drawings;.045;;1;BIOPOP April 2005;;.07;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vulpia myuros;42798;unknown;.2;;1;BIOPOP April 2005;;.25;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Koeleria macrantha;42831;derivation from photos or drawings;.135;;1;BIOPOP April 2005;;.2;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Koeleria macrantha;42831;unknown;.092;;1;BIOPOP April 2005;.092;;;;;.6;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.039;;1;BIOPOP April 2005;.039;;;;;.2;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.027;;1;BIOPOP April 2005;.027;;;;;.2;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.046;;1;BIOPOP April 2005;.046;;;;;.2;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.104;;1;BIOPOP April 2005;.104;;;;;1.1;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.063;;1;BIOPOP April 2005;.063;;;;;.7;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.044;;1;BIOPOP April 2005;.044;;;;;.2;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.127;;1;BIOPOP April 2005;.127;;;;;.7;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Koeleria macrantha;42831;unknown;.05;;1;BIOPOP April 2005;.05;;;;;.3;;Dixon, J. M. (2000): Biological flora of the British Isles: Koeleria macrantha (Ledeb.) Schultes (K. alpigena Domin, K. cristata (L.) Pers. pro parte, K. gracilis Pers., K. albescens auct. non DC.).;UNITED KINGDOM;unknown Lolium remotum;42844;laboratory/greenhouse/garden experiment;.67;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.65;.76;.52;;;;;;GERMANY;no Micropyrum tenellum;42857;derivation from photos or drawings;.16;;1;BIOPOP April 2005;;.25;.07;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parapholis strigosa;42872;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phalaris canariensis;42881;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.35;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phalaris canariensis;42881;laboratory/greenhouse/garden experiment;.97;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.91;1.14;.11;;;;;;GERMANY;no Phleum hirsutum;42888;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa chaixii;42902;unknown;.675;;1;BIOPOP April 2005;;.9;.45;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Stipa capillata;42956;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Koeleria glauca;43022;derivation from photos or drawings;.055;;1;BIOPOP April 2005;;.08;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Koeleria glauca;43022;derivation from photos or drawings;.115;;1;BIOPOP April 2005;;.15;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Leymus arenarius;43033;unknown;.75;;1;BIOPOP April 2005;;1;.5;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Poa annua;43060;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.15;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa minor;43069;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Spartina x townsendii;43118;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Ventenata dubia;43148;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hordeum marinum;43180;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hordeum marinum;43180;laboratory/greenhouse/garden experiment;.13;5;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.15;.2;.12;;;;;;GERMANY;no Hordeum secalinum;43182;unknown;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Lolium multiflorum;43196;unknown;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Lolium temulentum;43200;laboratory/greenhouse/garden experiment;.65;10;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.66;.75;.59;;;;;;GERMANY;no Melica nutans;43206;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Milium effusum;43212;derivation from photos or drawings;.625;;1;BIOPOP April 2005;;.8;.45;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nardus stricta;43217;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Nardus stricta;43217;actual measurement (following LEDA data standards);.14;9;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.15;.22;.09;;;;;;NORWAY;unknown Phleum phleoides;43239;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.4;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa hybrida;43260;unknown;.825;;1;BIOPOP April 2005;;1.25;.4;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Sesleria albicans;43301;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa supina;43423;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Puccinellia maritima;43436;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Setaria pumila;43456;laboratory/greenhouse/garden experiment;.46;2;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.46;.57;.35;;;;;;GERMANY;no Setaria verticillata;43457;unknown;.45;;1;BIOPOP April 2005;;.6;.3;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Tragus racemosus;43483;unknown;.165;;1;BIOPOP April 2005;;.25;.08;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa, Volume 1;;unknown Lolium perenne;43540;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Melica uniflora;43550;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.4;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Panicum miliaceum;43565;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phleum paniculatum;43581;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Poa palustris;43610;derivation from photos or drawings;1.1;;1;BIOPOP April 2005;;1.1;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Poa palustris;43610;derivation from photos or drawings;.535;;1;BIOPOP April 2005;;.8;.27;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Helictotrichon parlatorei;43690;derivation from photos or drawings;.475;;1;BIOPOP April 2005;;.75;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hordeum distichon;43701;laboratory/greenhouse/garden experiment;.8;24;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.8;.93;.68;;;;;;GERMANY;no Sesleria ovata;43779;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Triticum aestivum;43825;derivation from photos or drawings;1.7;;1;BIOPOP April 2005;;1.7;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Triticum aestivum;43825;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Triticum aestivum;43825;laboratory/greenhouse/garden experiment;.8;17;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.78;.84;.63;;;;;;GERMANY;no Triticum aestivum;43825;derivation from photos or drawings;.7;;1;BIOPOP April 2005;;;.7;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Zea mays;43844;derivation from photos or drawings;2;;1;BIOPOP April 2005;;3;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton natans;43926;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton nodosus;43933;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton polygonifolius;43944;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton alpinus;43951;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton coloratus;43961;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Potamogeton gramineus;43975;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Scheuchzeria palustris;43986;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sparganium angustifolium;43989;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.05;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sparganium emersum;43992;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.4;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sparganium erectum;43993;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sparganium minimum;43999;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.05;0;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium prenanthoides;44002;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Typha angustifolia;44027;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Typha latifolia;44041;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Typha minima;44044;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.7;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Typha shuttleworthii;44053;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium racemosum;44204;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Hieracium sabaudum;44218;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.2;.4;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum spectabile;44233;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopodiella inundata;44369;derivation from photos or drawings;.06;;1;BIOPOP April 2005;;.1;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Lycopodiella inundata;44369;actual measurement (following LEDA data standards);.02;4;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.02;.03;.01;;;;;;GERMANY;no Diphasiastrum complanatum;44372;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Diphasiastrum alpinum;44384;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);.04;6;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.08;.03;;;;;;NORWAY;unknown Diphasiastrum alpinum;44384;actual measurement (following LEDA data standards);.04;4;-2;Source data from Norwegian Institute for Nature Resaerch, NINA-Trondheim, NO (Rusch), E-Mail: Graciela.rusch@nina.no;.04;.06;.03;;;;;;NORWAY;unknown Selaginella selaginoides;44385;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.12;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Phegopteris connectilis;44452;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Asplenium trichomanes-ramosum;44469;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.2;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cystopteris alpina;44510;derivation from photos or drawings;.24;;1;BIOPOP April 2005;;.4;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Woodsia glabella s. pulchella;44517;derivation from photos or drawings;.085;;1;BIOPOP April 2005;;.12;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dryopteris affinis;44528;derivation from photos or drawings;1.3;;1;BIOPOP April 2005;;1.6;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thuja plicata;44580;derivation from photos or drawings;45;;1;BIOPOP April 2005;;60;30;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Salix serpillifolia;44593;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parietaria judaica;44662;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Parietaria judaica;44662;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.4;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Parietaria pensylvanica;44664;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aristolochia macrophylla;44684;derivation from photos or drawings;4.5;;1;BIOPOP April 2005;;6;3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fallopia convolvulus;44736;observation (like obvious taxonomical traits);.75;;1;ECOFLORA - database of the ecological flora of the british isles;;1.2;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fallopia convolvulus;44736;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Fallopia convolvulus;44736;unknown;1.025;;1;BIOPOP April 2005;;2;.05;;;;;Hume, L.(1983): The biology of Canadian weeds. 60. Polygonum convolvulus L.;;unknown Fallopia convolvulus;44736;derivation from photos or drawings;.675;;1;BIOPOP April 2005;;1.2;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fallopia dumetorum;44738;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Fallopia dumetorum;44738;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;3;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Fallopia baldschuanica;44739;derivation from photos or drawings;3.5;;1;BIOPOP April 2005;;5;2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rumex alpestris;44762;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.9;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium schraderianum;44800;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;.9;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium pumilio;44801;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium foliosum;44802;derivation from photos or drawings;.425;;1;BIOPOP April 2005;;.7;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chenopodium capitatum;44805;derivation from photos or drawings;.325;;1;BIOPOP April 2005;;.5;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex micrantha;44812;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Atriplex micrantha;44812;laboratory/greenhouse/garden experiment;.97;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.97;.97;.97;;;;;;GERMANY;no Atriplex prostrata;44815;observation (like obvious taxonomical traits);1.5;;1;ECOFLORA - database of the ecological flora of the british isles;;1.5;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Atriplex prostrata;44815;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.6;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bassia laniflora;44830;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bassia scoparia;44831;derivation from photos or drawings;.8;;1;BIOPOP April 2005;;1.3;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Bassia scoparia;44831;laboratory/greenhouse/garden experiment;1.18;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.18;1.28;1.07;;;;;;GERMANY;no Amaranthus powellii;44854;derivation from photos or drawings;.6;;1;BIOPOP April 2005;;1;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Drosanthemum floribundum;44875;observation (like obvious taxonomical traits);.8;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Lampranthus falciformis;44885;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Arenaria serpyllifolia s. leptoclados;44912;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Moehringia muscosa;44929;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium nigrescens subsp. arcticum;44985;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cerastium fontanum s. vulgare;44993;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cerastium pumilum s. glutinosum;45003;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccaria hispanica;45231;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.5;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Vaccaria hispanica;45231;laboratory/greenhouse/garden experiment;.69;19;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.69;.97;.54;;;;;;GERMANY;no Anemone narcissifolia;45374;derivation from photos or drawings;.225;;1;BIOPOP April 2005;;.3;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus serpens s. nemorosus;45399;derivation from photos or drawings;.375;;1;BIOPOP April 2005;;.6;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ranunculus peltatus s. baudotii;45465;derivation from photos or drawings;.02;;1;BIOPOP April 2005;;.03;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Ceratocephala falcata;45480;derivation from photos or drawings;.04;;1;BIOPOP April 2005;;.05;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pseudofumaria lutea;45589;observation (like obvious taxonomical traits);.225;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Pseudofumaria lutea;45589;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pseudofumaria lutea;45589;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;;.15;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ceratocapnos claviculata;45620;observation (like obvious taxonomical traits);.5;;1;ECOFLORA - database of the ecological flora of the british isles;;.8;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ceratocapnos claviculata;45620;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Ceratocapnos claviculata;45620;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis ciliata;45777;derivation from photos or drawings;.105;;1;BIOPOP April 2005;;.15;.06;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Arabis alpina s. caucasica;45783;derivation from photos or drawings;.075;;1;BIOPOP April 2005;;.1;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aurinia saxatilis;45901;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Pritzelago alpina;45948;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Thlaspi caerulescens;45966;observation (like obvious taxonomical traits);.4;;1;ECOFLORA - database of the ecological flora of the british isles;;.4;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Thlaspi caerulescens;45966;derivation from photos or drawings;.065;;1;BIOPOP April 2005;;.1;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coincya monensis s. recurvata;46063;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.3;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Coincya wrightii;46079;observation (like obvious taxonomical traits);.55;;1;ECOFLORA - database of the ecological flora of the british isles;;.9;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Coincya wrightii;46079;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;;.2;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Crassula helmsii;46103;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;.3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Jovibarba globifera;46120;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.2;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Jovibarba globifera s. arenaria;46130;derivation from photos or drawings;.125;;1;BIOPOP April 2005;;.15;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Sedum forsterianum;46133;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.15;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga burseriana;46194;derivation from photos or drawings;.025;;1;BIOPOP April 2005;;.03;.02;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Saxifraga exarata subsp. moschata;46235;derivation from photos or drawings;.015;;1;BIOPOP April 2005;;.02;.01;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Erodium lebelii;50011;observation (like obvious taxonomical traits);.15;;1;ECOFLORA - database of the ecological flora of the british isles;;.15;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Erodium ballii;50012;derivation from photos or drawings;.25;;1;BIOPOP April 2005;;.4;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Amelanchier lamarckii;50025;observation (like obvious taxonomical traits);12;;1;ECOFLORA - database of the ecological flora of the british isles;;12;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Amelanchier lamarckii;50025;derivation from photos or drawings;5.5;;1;BIOPOP April 2005;;10;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aphanes inexspectata;50026;derivation from photos or drawings;.09;;1;BIOPOP April 2005;;.15;.03;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Aphanes inexspectata;50026;laboratory/greenhouse/garden experiment;.04;20;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.05;.09;.03;;;;;;GERMANY;no Arabis nemorensis;50027;derivation from photos or drawings;.45;;1;BIOPOP April 2005;;.55;.35;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Dactylorhiza sphagnicola;50029;actual measurement (following LEDA data standards);.23;25;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.23;.32;.17;;;;;;GERMANY;no Pulmonaria collina;50038;derivation from photos or drawings;.14;;1;BIOPOP April 2005;;.2;.08;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rhinanthus glacialis;50039;derivation from photos or drawings;.35;;1;BIOPOP April 2005;;.6;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus fruticosus ag. L.;58698;field experiment;.44;30;1;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;.44;;;1;;;2004-02-11 00:00:00.0;Lavergne, Sébastian(2003): Do rock endemic and widespread plant species differ under the Leaf-Height-Seed...;FRANCE;no Rubus fruticosus ag. L.;58698;derivation from photos or drawings;2.25;;1;BIOPOP April 2005;;4;.5;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Rubus fruticosus ag. L.;58698;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Fitter, A. H. (unknown e-mail address);;unknown Arum cylindraceum;59052;derivation from photos or drawings;.275;;1;BIOPOP April 2005;;.4;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus adspersus;59130;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus camptostachys;59143;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus dethardingii;59156;derivation from photos or drawings;.9;;1;BIOPOP April 2005;;1.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus fabrimontanus;59166;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.8;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus fasciculatus;59168;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;2;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus ferocior;59169;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus gothicus;59179;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus grabowskii;59180;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus gracilis;59181;derivation from photos or drawings;1.4;;1;BIOPOP April 2005;;2;.8;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus lamprocaulos;59203;derivation from photos or drawings;.5;;1;BIOPOP April 2005;;.9;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus lobatidens;59211;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.8;.7;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus mollis;59219;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus nemorosus;59222;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;.8;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus orthostachys;59226;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus pedemontanus;59229;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.3;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus placidus;59233;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.5;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus platyacanthus;59234;derivation from photos or drawings;1.5;;1;BIOPOP April 2005;;2;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus pruinosus;59236;derivation from photos or drawings;.4;;1;BIOPOP April 2005;;.5;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus sorbicus;59248;derivation from photos or drawings;1;;1;BIOPOP April 2005;;1.5;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus vigorosus;59256;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum laevigatum ag.;59280;derivation from photos or drawings;.15;;1;BIOPOP April 2005;;.25;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum Sec. Ruderalia;59373;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.2;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Taraxacum Sec. Ruderalia;59373;derivation from photos or drawings;.2;;1;BIOPOP April 2005;;.35;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Taraxacum Sec. Ruderalia;59373;derivation from photos or drawings;.1;;1;BIOPOP April 2005;;.1;;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Chaerophyllum temulum;59605;observation (like obvious taxonomical traits);.65;;1;ECOFLORA - database of the ecological flora of the british isles;;1;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chaerophyllum temulum;59605;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.8;.25;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Chaerophyllum temulum;59605;observation (like obvious taxonomical traits);.3;;1;ECOFLORA - database of the ecological flora of the british isles;;;.3;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Phleum rhaeticum;60137;derivation from photos or drawings;.175;;1;BIOPOP April 2005;;.25;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia biennis;60555;derivation from photos or drawings;.65;;1;BIOPOP April 2005;;1;.3;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus armeniacus;60593;derivation from photos or drawings;1.75;;1;BIOPOP April 2005;;2.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium orientale;60681;laboratory/greenhouse/garden experiment;.64;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;.64;.64;.64;;;;;;GERMANY;no Platanus x hispanica;60719;derivation from photos or drawings;23;;1;BIOPOP April 2005;;40;6;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Rubus allegheniensis;60762;derivation from photos or drawings;1.25;;1;BIOPOP April 2005;;1.5;1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Alchemilla vulgaris;60849;derivation from photos or drawings;.37;;1;BIOPOP April 2005;;.7;.04;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Amaranthus bouchonii;60864;derivation from photos or drawings;.575;;1;BIOPOP April 2005;;.95;.2;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotoneaster franchetii;61001;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Leucanthemum ircutianum;61197;derivation from photos or drawings;.44;;1;BIOPOP April 2005;;.8;.08;;;;;Haeupler, H. (2000): Bildatlas der Farn- und Blütenpflanzen Deutschlands;GERMANY;unknown Senecio hercynicus;61470;derivation from photos or drawings;.95;;1;BIOPOP April 2005;;1.35;.55;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Tagetes patula;61520;derivation from photos or drawings;.3;;1;BIOPOP April 2005;;.55;.05;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Artemisia tournefortiana;61663;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium albinum s.lat.;61703;derivation from photos or drawings;.55;;1;BIOPOP April 2005;;1;.1;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Xanthium albinum s.lat.;61703;laboratory/greenhouse/garden experiment;1.08;1;-2;Source data from Carl von Ossietzky university of Oldenburg, Landscape Ecology Group, DE (Kunzmann), E-Mail: dkunzmann@gmx.de;1.08;1.08;1.08;;;;;;GERMANY;no Chenopodium hircinum;62059;derivation from photos or drawings;.525;;1;BIOPOP April 2005;;.9;.15;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown Cotoneaster divaricatus;62077;observation (like obvious taxonomical traits);2;;1;ECOFLORA - database of the ecological flora of the british isles;;2;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Cotoneaster divaricatus;62077;unknown;2;;1;BIOPOP April 2005;;2;;;;;;Hegi, G. B. (1906): Illustrierte Flora von Mitteleuropa;;unknown Cotoneaster bullatus;62079;observation (like obvious taxonomical traits);3;;1;ECOFLORA - database of the ecological flora of the british isles;;3;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Cotoneaster salicifolius;62087;observation (like obvious taxonomical traits);5;;1;ECOFLORA - database of the ecological flora of the british isles;;5;;;;;;Stace, C. A.(1992): New Flora of the British Isles, Cambridge University Press. [];;unknown Epilobium brunnescens;62141;observation (like obvious taxonomical traits);.08;;1;ECOFLORA - database of the ecological flora of the british isles;;;.08;;;;;Davey, A. J.(1961): no title given, publication in Journal of Ecology issue: 49 pages: 753-759 [49];;unknown Epilobium brunnescens;62141;observation (like obvious taxonomical traits);.2;;1;ECOFLORA - database of the ecological flora of the british isles;;.2;;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erophila majuscula;62241;observation (like obvious taxonomical traits);.055;;1;ECOFLORA - database of the ecological flora of the british isles;;.09;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Erophila majuscula;62241;observation (like obvious taxonomical traits);.02;;1;ECOFLORA - database of the ecological flora of the british isles;;;.02;;;;;Clapham, A. R.(1987): Flora of the British Isles, 3rd ed, Cambridge University Press, Cambridge [];;unknown Chenopodium pratericola;65749;derivation from photos or drawings;.75;;1;BIOPOP April 2005;;1;.5;;;;;Jäger, E.J. (2000): Rothmaler Exkursionsflora von Deutschland. Gefäßpflanzen: Atlasband;GERMANY;unknown