diff --git a/Zoop_code/ted-zoop-analyses/zoop-data-processing-FASTR.R b/Zoop_code/ted-zoop-analyses/zoop-data-processing-FASTR.R index 8e649cf..4221422 100644 --- a/Zoop_code/ted-zoop-analyses/zoop-data-processing-FASTR.R +++ b/Zoop_code/ted-zoop-analyses/zoop-data-processing-FASTR.R @@ -95,6 +95,11 @@ df_zoop <- df_zoop %>% relocate(NetFlowDays, .after = FlowPulseType) %>% relocate(Taxlife, .after = TaxonName) +# Export list of taxonomic classifications for each genus +df_taxa <- df_zoop %>% + select(Classification,Genus) %>% + unique() + # Order the new ActionPhase so that it plots in the order Pre < During < Post phase.order <- c("Before","During","After") df_zoop$SamplePeriod <- factor(as.character(df_zoop$SamplePeriod), @@ -125,7 +130,7 @@ df_zoop <- df_zoop %>% filter(Year >= 2014) # Summarize data --------------------------------------------------------------- # Examine all samples for high-level diversity -table(df_zoop$Phylum) +table(df_zoop$Phylum) # 2 (Arthropoda, Rotifera) table(df_zoop$Class) # 4 (Branchiopoda, Hexanauplia, Insecta, Ostracoda) table(df_zoop$Order) # 3 (Calanoida, Cyclopoida, Diplostraca) @@ -157,23 +162,34 @@ sort(table(df_zoop$TaxonName), decreasing = TRUE) # Summarize by taxon for NMDS plots df_zoop_gen <- df_zoop %>% - group_by(Year, Month, Date, Region, WYType, FlowPulseType, StationCode, Family, Genus, TaxonName) %>% + group_by(Year, Month, Date, Region, WYType, FlowPulseType, SamplePeriod,StationCode, Family, Genus) %>% summarize(across(CPUEZoop:BPUE, ~sum(.x, na.rm = TRUE))) %>% ungroup # Add zeros to genus data frame -temp <- df_zoop_gen %>% select(Year:StationCode,TaxonName:CPUEZoop) +temp <- df_zoop_gen %>% select(Year:StationCode,Genus:CPUEZoop) temp <- pivot_wider(temp, - names_from = "TaxonName", + names_from = "Genus", values_from = "CPUEZoop", values_fill = 0) df_zoop_gen <- pivot_longer(temp, - cols = `Sinocalanus doerrii`:last_col(), - names_to = "TaxonName", + cols = `Sinocalanus`:last_col(), + names_to = "Genus", values_to = "CPUEZoop") +df_zoop_gen_export <- left_join(df_zoop_gen,df_taxa) + +df_zoop_gen_export <- df_zoop_gen_export %>% + filter(Genus != "NA") %>% + filter(!is.na(Classification)) %>% + relocate(Classification, .before = Genus) + +# Check if any microzoop, macrozoop, or harpacticoids are still there +sort(unique(df_zoop_gen_export$Classification)) # no + +write_csv(df_zoop_gen_export, file = "df_zoop_gen_export.csv") # Calculate relative abundance of CPUE by taxon df_zoop_RA <- df_zoop_gen %>% @@ -194,12 +210,20 @@ df_zoop_RA_tot <- df_zoop_RA %>% summarize(MeanRelAbund = sum(MeanRelAbund)) %>% ungroup() -## Create cross-walk table for what taxa are lumped into the Other category +# Create cross-walk table for what taxa are lumped into the Other category df_zoop_types <- df_zoop_RA_tot %>% select(Type) +# Create taxonomy table of all organisms present +df_tax_table <- df_zoop %>% + select(Phylum:TaxonName) %>% + unique() %>% + ungroup() + +write_csv(df_tax_table, file = "df_tax_table.csv") + # Calculate NMDS axes ---------------------------------------------------------- -## Generate NMDS data with metaMDS by each year separately +# Generate NMDS data with metaMDS by each year separately years <- unique(df_zoop_gen$Year) years <- sort(years, decreasing = F, na.last = T) @@ -223,7 +247,7 @@ for (i in 1:length(years)) { # A good rule of thumb: stress < 0.05 provides an excellent representation in reduced dimensions, # < 0.1 is great, < 0.2 is good/ok, and stress < 0.3 provides a poor representation. zoop_NMDS <- metaMDS( - comm = genw[c(8:76)], + comm = genw[c(9:56)], distance = "bray", k = 3, trymax = 150 diff --git a/df_tax_table.csv b/df_tax_table.csv new file mode 100644 index 0000000..fd294ea --- /dev/null +++ b/df_tax_table.csv @@ -0,0 +1,70 @@ +Phylum,Class,Order,Family,Genus,Species,TaxonName +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Acanthocyclops,vernalis,Acanthocyclops vernalis +Arthropoda,Hexanauplia,Calanoida,Acartiidae,Acartia,NA,Acartia sp. +Arthropoda,Hexanauplia,Calanoida,Acartiidae,Acartiella,sinensis,Acartiella sinensis +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Alona,NA,Alona sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Alonella,NA,Alonella sp. +Arthropoda,Hexanauplia,Cyclopoida,Chydoridae,Anchistropus,NA,Anchistropus sp. +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Arctodiaptomus,dorsalis,Arctodiaptomus dorsalis +Arthropoda,Branchiopoda,Diplostraca,Bosminidae,Bosmina,longirostris,Bosmina longirostris +Arthropoda,Hexanauplia,Calanoida,NA,NA,NA,Calanoida +Arthropoda,Branchiopoda,Diplostraca,Eurycercidae,Camptocercus,NA,Camptocercus sp. +Arthropoda,Branchiopoda,Diplostraca,Daphniidae,Ceriodaphnia,NA,Ceriodaphnia sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Chydorus,NA,Chydorus sp. +Arthropoda,Hexanauplia,NA,NA,NA,NA,Cirripedia +Arthropoda,Branchiopoda,Diplostraca,NA,NA,NA,Cladocera +Arthropoda,Hexanauplia,NA,NA,NA,NA,Copepoda +Arthropoda,Hexanauplia,Cyclopoida,NA,NA,NA,Cyclopoida +Arthropoda,Branchiopoda,Diplostraca,Daphniidae,Daphnia,NA,Daphnia sp. +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Diacyclops,thomasi,Diacyclops thomasi +Arthropoda,Branchiopoda,Diplostraca,Sididae,Diaphanosoma,NA,Diaphanosoma sp. +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Diaptomus,dorsalis,Diaptomus dorsalis +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Diaptomus,siciloides,Diaptomus siciloides +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Diaptomus,NA,Diaptomus sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Disparalona,NA,Disparalona sp. +Arthropoda,Hexanauplia,Cyclopoida,Ergasilidae,Ergasilus,NA,Ergasilus sp. +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,agilis,Eucyclops agilis +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,elegans,Eucyclops elegans +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,pectinifer,Eucyclops pectinifer +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,phaleratus,Eucyclops phaleratus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,prionophorus,Eucyclops prionophorus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Eucyclops,NA,Eucyclops sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Eurycercus,NA,Eurycercus sp. +Arthropoda,Hexanauplia,Calanoida,Temoridae,Eurytemora,affinis,Eurytemora affinis +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Graptoleberis,NA,Graptoleberis sp. +Arthropoda,Hexanauplia,Cyclopoida,NA,NA,NA,Harpacticoida +Arthropoda,Branchiopoda,Diplostraca,Ilyocryptidae,Ilyocryptus,NA,Ilyocryptus sp. +Arthropoda,Insecta,NA,NA,NA,NA,Insecta +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Kurzia,NA,Kurzia sp. +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Leptodiaptomus,siciloides,Leptodiaptomus siciloides +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Leydigia,NA,Leydigia sp. +Arthropoda,Hexanauplia,Cyclopoida,Cyclopettidae,Limnoithona,NA,Limnoithona sp. +Arthropoda,Hexanauplia,Cyclopoida,Cyclopettidae,Limnoithona,tetraspina,Limnoithona tetraspina +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Macrocyclops,albidus,Macrocyclops albidus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Macrocyclops,NA,Macrocyclops sp. +Arthropoda,Branchiopoda,Diplostraca,Macrothricidae,Macrothrix,NA,Macrothrix sp. +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Mesocyclops,edax,Mesocyclops edax +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Microcyclops,rubellus,Microcyclops rubellus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Microcyclops,NA,Microcyclops sp. +Arthropoda,Branchiopoda,Diplostraca,Moinidae,Moina,NA,Moina sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Monospilus,dispar,Monospilus dispar +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Monospilus,NA,Monospilus sp. +Arthropoda,Hexanauplia,Calanoida,Centropagidae,Osphranticum,labronectum,Osphranticum labronectum +Arthropoda,Ostracoda,NA,NA,NA,NA,Ostracoda +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Paracyclops,chiltoni,Paracyclops chiltoni +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Paracyclops,fimbriatus,Paracyclops fimbriatus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Paracyclops,NA,Paracyclops sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Picripleuroxus,NA,Picripleuroxus sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Pleuroxus,NA,Pleuroxus sp. +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Pseudochydorus,globosus,Pseudochydorus globosus +Arthropoda,Branchiopoda,Diplostraca,Chydoridae,Pseudochydorus,NA,Pseudochydorus sp. +Arthropoda,Hexanauplia,Calanoida,Pseudodiaptomidae,Pseudodiaptomus,forbesi,Pseudodiaptomus forbesi +Arthropoda,Hexanauplia,Calanoida,Pseudodiaptomidae,Pseudodiaptomus,NA,Pseudodiaptomus sp. +Rotifera,NA,NA,NA,NA,NA,Rotifera +Arthropoda,Branchiopoda,Diplostraca,Daphniidae,Scapholeberis,NA,Scapholeberis sp. +Arthropoda,Branchiopoda,Diplostraca,Sididae,Sida,NA,Sida sp. +Arthropoda,Branchiopoda,Diplostraca,Daphniidae,Simocephalus,NA,Simocephalus sp. +Arthropoda,Hexanauplia,Calanoida,Centropagidae,Sinocalanus,doerrii,Sinocalanus doerrii +Arthropoda,Hexanauplia,Calanoida,Diaptomidae,Skistodiaptomus,pallidus,Skistodiaptomus pallidus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Tropocyclops,prasinus,Tropocyclops prasinus +Arthropoda,Hexanauplia,Cyclopoida,Cyclopidae,Tropocyclops,NA,Tropocyclops sp. diff --git a/df_zoop_gen.csv b/df_zoop_gen.csv new file mode 100644 index 0000000..4043295 --- /dev/null +++ b/df_zoop_gen.csv @@ -0,0 +1,17056 @@ +Year,Month,Date,Region,WYType,FlowPulseType,SamplePeriod,StationCode,Genus,CPUEZoop +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Sinocalanus,663.389536279305 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Pseudodiaptomus,14447.149901193712 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,NA,26461.87150269667 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Bosmina,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Diaphanosoma,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Alona,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Chydorus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Ceriodaphnia,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Daphnia,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Diaptomus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Ilyocryptus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Macrothrix,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Limnoithona,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Camptocercus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Acartiella,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Eurytemora,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Monospilus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Microcyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Eucyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Osphranticum,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Sida,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Disparalona,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Kurzia,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Simocephalus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Moina,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Leydigia,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Alonella,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Diacyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Eurycercus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Paracyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Ergasilus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Anchistropus,0 +2014,Aug,2014-08-05,Upstream,C,NF,Before,STTD,Acartia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Sinocalanus,129.854265223993 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Pseudodiaptomus,2157.578560644815 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,NA,1243.2201250439145 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Bosmina,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Diaphanosoma,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Alona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Chydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Ceriodaphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Daphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Diaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Ilyocryptus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Macrothrix,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Limnoithona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Camptocercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Acartiella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Eurytemora,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Monospilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Microcyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Eucyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Pleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Osphranticum,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Sida,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Disparalona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Mesocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Graptoleberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Kurzia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Simocephalus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Moina,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Leydigia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Acanthocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Macrocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Picripleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Arctodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Pseudochydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Scapholeberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Alonella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Diacyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Eurycercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Leptodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Skistodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Paracyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Ergasilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Tropocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Anchistropus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,BL5,Acartia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Sinocalanus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Pseudodiaptomus,2905.086575008805 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,NA,432.2400267853587 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Bosmina,21.6797505597672 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Diaphanosoma,32.5196258396508 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Alona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Chydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Ceriodaphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Daphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Diaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Ilyocryptus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Macrothrix,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Limnoithona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Camptocercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Acartiella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Eurytemora,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Monospilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Microcyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Eucyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Pleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Osphranticum,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Sida,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Disparalona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Mesocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Graptoleberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Kurzia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Simocephalus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Moina,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Leydigia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Acanthocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Macrocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Picripleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Arctodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Pseudochydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Scapholeberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Alonella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Diacyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Eurycercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Leptodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Skistodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Paracyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Ergasilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Tropocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Anchistropus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,LIB,Acartia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Sinocalanus,56.0999037509819 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Pseudodiaptomus,7264.937535752149 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,NA,196.34966312843682 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Bosmina,28.0499518754909 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Diaphanosoma,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Alona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Chydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Ceriodaphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Daphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Diaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Ilyocryptus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Macrothrix,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Limnoithona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Camptocercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Acartiella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Eurytemora,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Monospilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Microcyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Eucyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Pleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Osphranticum,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Sida,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Disparalona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Mesocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Graptoleberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Kurzia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Simocephalus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Moina,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Leydigia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Acanthocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Macrocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Picripleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Arctodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Pseudochydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Scapholeberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Alonella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Diacyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Eurycercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Leptodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Skistodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Paracyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Ergasilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Tropocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Anchistropus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RVB,Acartia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Sinocalanus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Pseudodiaptomus,2286.11878516393 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,NA,899.9288161355981 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Bosmina,46.0911045395953 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Diaphanosoma,9.21822090791906 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Alona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Chydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Ceriodaphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Daphnia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Diaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Ilyocryptus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Macrothrix,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Limnoithona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Camptocercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Acartiella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Eurytemora,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Monospilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Microcyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Eucyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Pleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Osphranticum,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Sida,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Disparalona,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Mesocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Graptoleberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Kurzia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Simocephalus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Moina,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Leydigia,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Acanthocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Macrocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Picripleuroxus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Arctodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Pseudochydorus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Scapholeberis,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Alonella,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Diacyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Eurycercus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Leptodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Skistodiaptomus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Paracyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Ergasilus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Tropocyclops,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Anchistropus,0 +2014,Aug,2014-08-05,Downstream,C,NF,Before,RYI,Acartia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Sinocalanus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Pseudodiaptomus,834.108328943932 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,NA,5954.169517933102 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Bosmina,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Diaphanosoma,802.632542946048 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Alona,346.233645976727 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Chydorus,173.116822988363 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Ceriodaphnia,503.612575966148 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Daphnia,125.903143991537 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Diaptomus,47.2136789968263 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Ilyocryptus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Macrothrix,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Limnoithona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Camptocercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Acartiella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Eurytemora,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Monospilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Microcyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Eucyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Pleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Osphranticum,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Sida,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Disparalona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Mesocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Graptoleberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Kurzia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Simocephalus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Moina,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Leydigia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Acanthocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Macrocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Picripleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Arctodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Pseudochydorus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Scapholeberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Alonella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Diacyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Eurycercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Leptodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Skistodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Paracyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Ergasilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Tropocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Anchistropus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,I80,Acartia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Sinocalanus,354.1025924761973 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Pseudodiaptomus,60.328589829278116 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,NA,872.5787340524574 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Bosmina,5.24596433298071 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Diaphanosoma,212.461555485719 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Alona,47.2136789968263 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Chydorus,5.24596433298071 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Ceriodaphnia,7.86894649947106 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Daphnia,5.24596433298071 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Diaptomus,2.62298216649035 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Ilyocryptus,13.1149108324518 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Macrothrix,7.86894649947106 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Limnoithona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Camptocercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Acartiella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Eurytemora,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Monospilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Microcyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Eucyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Pleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Osphranticum,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Sida,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Disparalona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Mesocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Graptoleberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Kurzia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Simocephalus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Moina,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Leydigia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Acanthocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Macrocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Picripleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Arctodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Pseudochydorus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Scapholeberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Alonella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Diacyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Eurycercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Leptodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Skistodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Paracyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Ergasilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Tropocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Anchistropus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,LIS,Acartia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Sinocalanus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Pseudodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,NA,3919.146474931339 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Bosmina,29.2110296268174 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Diaphanosoma,14.6055148134087 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Alona,38.9480395024232 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Chydorus,19.4740197512116 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Ceriodaphnia,637.77414685218 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Daphnia,111.975613569467 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Diaptomus,9.7370098756058 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Ilyocryptus,14.6055148134087 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Macrothrix,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Limnoithona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Camptocercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Acartiella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Eurytemora,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Monospilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Microcyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Eucyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Pleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Osphranticum,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Sida,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Disparalona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Mesocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Graptoleberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Kurzia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Simocephalus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Moina,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Leydigia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Acanthocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Macrocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Picripleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Arctodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Pseudochydorus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Scapholeberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Alonella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Diacyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Eurycercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Leptodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Skistodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Paracyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Ergasilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Tropocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Anchistropus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RCS,Acartia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Sinocalanus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Pseudodiaptomus,0.934472006886517 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,NA,211.89152756151796 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Bosmina,0.934472006886517 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Diaphanosoma,56.068320413191 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Alona,80.3645925922405 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Chydorus,9.34472006886517 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Ceriodaphnia,11.2136640826382 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Daphnia,5.6068320413191 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Diaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Ilyocryptus,39.2478242892337 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Macrothrix,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Limnoithona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Camptocercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Acartiella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Eurytemora,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Monospilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Microcyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Eucyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Pleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Osphranticum,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Sida,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Disparalona,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Mesocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Graptoleberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Kurzia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Simocephalus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Moina,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Leydigia,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Acanthocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Macrocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Picripleuroxus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Arctodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Pseudochydorus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Scapholeberis,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Alonella,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Diacyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Eurycercus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Leptodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Skistodiaptomus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Paracyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Ergasilus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Tropocyclops,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Anchistropus,0 +2014,Aug,2014-08-06,Upstream,C,NF,Before,RD22,Acartia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Sinocalanus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Pseudodiaptomus,235.47600252494996 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,NA,2548.0280650577088 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Bosmina,13.3288303316009 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Diaphanosoma,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Alona,177.717737754679 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Chydorus,102.18769920894 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Ceriodaphnia,342.106645177757 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Daphnia,191.04656808628 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Diaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Ilyocryptus,4.44294344386697 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Macrothrix,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Limnoithona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Camptocercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Acartiella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Eurytemora,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Monospilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Microcyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Eucyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Pleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Osphranticum,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Sida,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Disparalona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Mesocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Graptoleberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Kurzia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Simocephalus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Moina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Leydigia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Acanthocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Macrocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Picripleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Arctodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Pseudochydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Scapholeberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Alonella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Diacyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Eurycercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Leptodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Skistodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Paracyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Ergasilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Tropocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Anchistropus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,I80,Acartia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Sinocalanus,1940.754593379158 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Pseudodiaptomus,2689.817769771119 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,NA,700.8280476091413 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Bosmina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Diaphanosoma,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Alona,187.265794097989 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Chydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Ceriodaphnia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Daphnia,51.0724892994516 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Diaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Ilyocryptus,51.0724892994516 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Macrothrix,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Limnoithona,17.0241630998172 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Camptocercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Acartiella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Eurytemora,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Monospilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Microcyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Eucyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Pleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Osphranticum,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Sida,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Disparalona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Mesocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Graptoleberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Kurzia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Simocephalus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Moina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Leydigia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Acanthocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Macrocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Picripleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Arctodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Pseudochydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Scapholeberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Alonella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Diacyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Eurycercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Leptodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Skistodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Paracyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Ergasilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Tropocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Anchistropus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,LIS,Acartia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Sinocalanus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Pseudodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,NA,2242.1940218570066 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Bosmina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Diaphanosoma,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Alona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Chydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Ceriodaphnia,6.83595738371038 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Daphnia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Diaptomus,13.67191476742076 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Ilyocryptus,6.83595738371038 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Macrothrix,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Limnoithona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Camptocercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Acartiella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Eurytemora,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Monospilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Microcyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Eucyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Pleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Osphranticum,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Sida,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Disparalona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Mesocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Graptoleberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Kurzia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Simocephalus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Moina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Leydigia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Acanthocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Macrocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Picripleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Arctodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Pseudochydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Scapholeberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Alonella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Diacyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Eurycercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Leptodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Skistodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Paracyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Ergasilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Tropocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Anchistropus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RCS,Acartia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Sinocalanus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Pseudodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,NA,79.66652595618623 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Bosmina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Diaphanosoma,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Alona,9.09568036140991 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Chydorus,1.69221960212277 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Ceriodaphnia,0.846109801061387 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Daphnia,1.48069215185743 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Diaptomus,0.211527450265347 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Ilyocryptus,14.3838666180436 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Macrothrix,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Limnoithona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Camptocercus,0.423054900530694 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Acartiella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Eurytemora,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Monospilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Microcyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Eucyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Pleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Osphranticum,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Sida,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Disparalona,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Mesocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Graptoleberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Kurzia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Simocephalus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Moina,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Leydigia,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Acanthocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Macrocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Picripleuroxus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Arctodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Pseudochydorus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Scapholeberis,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Alonella,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Diacyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Eurycercus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Leptodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Skistodiaptomus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Paracyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Ergasilus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Tropocyclops,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Anchistropus,0 +2014,Aug,2014-08-20,Upstream,C,NF,Before,RD22,Acartia,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Sinocalanus,595.7979682717848 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Pseudodiaptomus,11965.609196124993 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,NA,10922.96275164939 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Bosmina,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Diaphanosoma,248.249153446577 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Alona,49.6498306893154 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Chydorus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Ceriodaphnia,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Daphnia,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Diaptomus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Ilyocryptus,99.2996613786309 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Macrothrix,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Limnoithona,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Camptocercus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Acartiella,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Eurytemora,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Monospilus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Microcyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Eucyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Osphranticum,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Sida,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Disparalona,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Kurzia,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Simocephalus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Moina,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Leydigia,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Alonella,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Diacyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Eurycercus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Paracyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Ergasilus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Anchistropus,0 +2014,Aug,2014-08-21,Upstream,C,NF,Before,STTD,Acartia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Sinocalanus,549.848746081052 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Pseudodiaptomus,12591.536285256105 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,NA,12619.028722560099 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Bosmina,54.9848746081052 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Diaphanosoma,109.96974921621 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Alona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Chydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Ceriodaphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Daphnia,109.96974921621 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Diaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Ilyocryptus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Macrothrix,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Limnoithona,54.9848746081052 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Camptocercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Acartiella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Eurytemora,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Monospilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Microcyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Eucyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Pleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Osphranticum,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Sida,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Disparalona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Mesocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Graptoleberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Kurzia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Simocephalus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Moina,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Leydigia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Acanthocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Macrocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Picripleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Arctodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Pseudochydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Scapholeberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Alonella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Diacyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Eurycercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Leptodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Skistodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Paracyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Ergasilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Tropocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Anchistropus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,BL5,Acartia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Sinocalanus,27.2386609597075 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Pseudodiaptomus,3037.110697007389 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,NA,643.2296291214255 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Bosmina,13.6193304798538 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Diaphanosoma,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Alona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Chydorus,13.6193304798538 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Ceriodaphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Daphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Diaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Ilyocryptus,13.6193304798538 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Macrothrix,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Limnoithona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Camptocercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Acartiella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Eurytemora,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Monospilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Microcyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Eucyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Pleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Osphranticum,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Sida,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Disparalona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Mesocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Graptoleberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Kurzia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Simocephalus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Moina,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Leydigia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Acanthocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Macrocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Picripleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Arctodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Pseudochydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Scapholeberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Alonella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Diacyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Eurycercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Leptodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Skistodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Paracyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Ergasilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Tropocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Anchistropus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,LIB,Acartia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Sinocalanus,6.44526014700032 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Pseudodiaptomus,1598.4245164560825 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,NA,38.67156088200194 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Bosmina,19.335780441001 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Diaphanosoma,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Alona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Chydorus,6.44526014700032 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Ceriodaphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Daphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Diaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Ilyocryptus,19.335780441001 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Macrothrix,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Limnoithona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Camptocercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Acartiella,6.44526014700032 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Eurytemora,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Monospilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Microcyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Eucyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Pleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Osphranticum,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Sida,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Disparalona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Mesocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Graptoleberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Kurzia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Simocephalus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Moina,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Leydigia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Acanthocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Macrocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Picripleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Arctodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Pseudochydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Scapholeberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Alonella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Diacyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Eurycercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Leptodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Skistodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Paracyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Ergasilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Tropocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Anchistropus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RVB,Acartia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Sinocalanus,27.2386609597075 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Pseudodiaptomus,5420.493530981797 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,NA,1035.0691164688849 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Bosmina,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Diaphanosoma,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Alona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Chydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Ceriodaphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Daphnia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Diaptomus,13.6193304798538 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Ilyocryptus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Macrothrix,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Limnoithona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Camptocercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Acartiella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Eurytemora,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Monospilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Microcyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Eucyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Pleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Osphranticum,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Sida,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Disparalona,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Mesocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Graptoleberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Kurzia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Simocephalus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Moina,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Leydigia,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Acanthocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Macrocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Picripleuroxus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Arctodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Pseudochydorus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Scapholeberis,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Alonella,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Diacyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Eurycercus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Leptodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Skistodiaptomus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Paracyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Ergasilus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Tropocyclops,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Anchistropus,0 +2014,Aug,2014-08-21,Downstream,C,NF,Before,RYI,Acartia,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Sinocalanus,235.54496173582947 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Pseudodiaptomus,7517.810028735235 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,NA,6003.12506646177 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Bosmina,58.8862404339575 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Diaphanosoma,78.5149872452766 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Alona,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Chydorus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Ceriodaphnia,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Daphnia,78.5149872452766 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Diaptomus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Ilyocryptus,19.6287468113192 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Macrothrix,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Limnoithona,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Camptocercus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Acartiella,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Eurytemora,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Monospilus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Microcyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Eucyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Osphranticum,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Sida,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Disparalona,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Kurzia,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Simocephalus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Moina,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Leydigia,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Alonella,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Diacyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Eurycercus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Paracyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Ergasilus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Anchistropus,0 +2014,Aug,2014-08-27,Upstream,C,NF,Before,STTD,Acartia,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Sinocalanus,233.453713394118 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Pseudodiaptomus,9384.839278443531 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,NA,7844.044770042352 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Bosmina,46.6907426788235 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Diaphanosoma,700.361140182353 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Alona,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Chydorus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Ceriodaphnia,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Daphnia,46.6907426788235 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Diaptomus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Ilyocryptus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Macrothrix,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Limnoithona,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Camptocercus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Acartiella,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Eurytemora,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Monospilus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Microcyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Eucyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Pleuroxus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Osphranticum,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Sida,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Disparalona,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Mesocyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Graptoleberis,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Kurzia,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Simocephalus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Moina,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Leydigia,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Acanthocyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Macrocyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Picripleuroxus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Arctodiaptomus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Pseudochydorus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Scapholeberis,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Alonella,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Diacyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Eurycercus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Leptodiaptomus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Skistodiaptomus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Paracyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Ergasilus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Tropocyclops,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Anchistropus,0 +2014,Sep,2014-09-10,Upstream,C,NF,During,STTD,Acartia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Sinocalanus,339.666755372851 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Pseudodiaptomus,34561.09235918762 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,NA,5434.668085965618 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Bosmina,84.9166888432129 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Diaphanosoma,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Alona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Chydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Ceriodaphnia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Daphnia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Diaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Ilyocryptus,84.9166888432129 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Macrothrix,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Limnoithona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Camptocercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Acartiella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Eurytemora,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Monospilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Microcyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Eucyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Pleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Osphranticum,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Sida,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Disparalona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Mesocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Graptoleberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Kurzia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Simocephalus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Moina,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Leydigia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Acanthocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Macrocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Picripleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Arctodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Pseudochydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Scapholeberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Alonella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Diacyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Eurycercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Leptodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Skistodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Paracyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Ergasilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Tropocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Anchistropus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,BL5,Acartia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Sinocalanus,26.5743033753244 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Pseudodiaptomus,4517.631573805144 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,NA,212.5944270025956 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Bosmina,13.2871516876622 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Diaphanosoma,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Alona,66.435758438311 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Chydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Ceriodaphnia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Daphnia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Diaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Ilyocryptus,26.5743033753244 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Macrothrix,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Limnoithona,13.2871516876622 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Camptocercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Acartiella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Eurytemora,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Monospilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Microcyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Eucyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Pleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Osphranticum,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Sida,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Disparalona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Mesocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Graptoleberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Kurzia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Simocephalus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Moina,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Leydigia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Acanthocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Macrocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Picripleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Arctodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Pseudochydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Scapholeberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Alonella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Diacyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Eurycercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Leptodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Skistodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Paracyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Ergasilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Tropocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Anchistropus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,LIB,Acartia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Sinocalanus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Pseudodiaptomus,7914.544699385215 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,NA,703.515084389797 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Bosmina,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Diaphanosoma,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Alona,29.3131285162415 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Chydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Ceriodaphnia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Daphnia,29.3131285162415 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Diaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Ilyocryptus,29.3131285162415 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Macrothrix,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Limnoithona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Camptocercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Acartiella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Eurytemora,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Monospilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Microcyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Eucyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Pleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Osphranticum,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Sida,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Disparalona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Mesocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Graptoleberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Kurzia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Simocephalus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Moina,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Leydigia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Acanthocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Macrocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Picripleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Arctodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Pseudochydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Scapholeberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Alonella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Diacyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Eurycercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Leptodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Skistodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Paracyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Ergasilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Tropocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Anchistropus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RVB,Acartia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Sinocalanus,53.027010520562 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Pseudodiaptomus,7123.295079928831 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,NA,936.8105191965963 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Bosmina,17.6756701735207 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Diaphanosoma,35.3513403470414 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Alona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Chydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Ceriodaphnia,17.6756701735207 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Daphnia,53.027010520562 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Diaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Ilyocryptus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Macrothrix,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Limnoithona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Camptocercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Acartiella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Eurytemora,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Monospilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Microcyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Eucyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Pleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Osphranticum,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Sida,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Disparalona,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Mesocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Graptoleberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Kurzia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Simocephalus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Moina,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Leydigia,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Acanthocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Macrocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Picripleuroxus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Arctodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Pseudochydorus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Scapholeberis,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Alonella,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Diacyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Eurycercus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Leptodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Skistodiaptomus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Paracyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Ergasilus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Tropocyclops,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Anchistropus,0 +2014,Sep,2014-09-10,Downstream,C,NF,During,RYI,Acartia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Sinocalanus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Pseudodiaptomus,313.7617908016945 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,NA,1606.161548151529 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Bosmina,67.2346694575059 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Diaphanosoma,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Alona,552.818393317271 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Chydorus,179.292451886682 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Ceriodaphnia,149.410376572235 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Daphnia,89.6462259433412 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Diaptomus,7.47051882861176 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Ilyocryptus,253.9976401728 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Macrothrix,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Limnoithona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Camptocercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Acartiella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Eurytemora,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Monospilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Microcyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Eucyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Pleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Osphranticum,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Sida,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Disparalona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Mesocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Graptoleberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Kurzia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Simocephalus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Moina,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Leydigia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Acanthocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Macrocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Picripleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Arctodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Pseudochydorus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Scapholeberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Alonella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Diacyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Eurycercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Leptodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Skistodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Paracyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Ergasilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Tropocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Anchistropus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,I80,Acartia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Sinocalanus,1544.304918047299 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Pseudodiaptomus,1979.320387919775 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,NA,9004.820226360307 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Bosmina,65.2523204808718 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Diaphanosoma,1218.04331564294 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Alona,65.2523204808718 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Chydorus,21.7507734936239 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Ceriodaphnia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Daphnia,108.75386746812 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Diaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Ilyocryptus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Macrothrix,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Limnoithona,21.7507734936239 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Camptocercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Acartiella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Eurytemora,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Monospilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Microcyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Eucyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Pleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Osphranticum,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Sida,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Disparalona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Mesocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Graptoleberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Kurzia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Simocephalus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Moina,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Leydigia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Acanthocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Macrocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Picripleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Arctodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Pseudochydorus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Scapholeberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Alonella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Diacyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Eurycercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Leptodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Skistodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Paracyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Ergasilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Tropocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Anchistropus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,LIS,Acartia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Sinocalanus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Pseudodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,NA,59.41411614998784 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Bosmina,8.30966659440389 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Diaphanosoma,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Alona,16.2038498590876 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Chydorus,9.55611658356447 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Ceriodaphnia,25.759966442652 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Daphnia,0.830966659440389 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Diaptomus,4.15483329720195 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Ilyocryptus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Macrothrix,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Limnoithona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Camptocercus,0.415483329720194 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Acartiella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Eurytemora,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Monospilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Microcyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Eucyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Pleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Osphranticum,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Sida,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Disparalona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Mesocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Graptoleberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Kurzia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Simocephalus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Moina,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Leydigia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Acanthocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Macrocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Picripleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Arctodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Pseudochydorus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Scapholeberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Alonella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Diacyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Eurycercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Leptodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Skistodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Paracyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Ergasilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Tropocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Anchistropus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RCS,Acartia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Sinocalanus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Pseudodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,NA,37.331025715994564 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Bosmina,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Diaphanosoma,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Alona,9.75873286351726 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Chydorus,3.09801043286262 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Ceriodaphnia,1.85880625971757 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Daphnia,1.70390573807444 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Diaptomus,1.23920417314505 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Ilyocryptus,2.16860730300383 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Macrothrix,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Limnoithona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Camptocercus,0.619602086572524 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Acartiella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Eurytemora,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Monospilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Microcyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Eucyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Pleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Osphranticum,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Sida,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Disparalona,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Mesocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Graptoleberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Kurzia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Simocephalus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Moina,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Leydigia,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Acanthocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Macrocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Picripleuroxus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Arctodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Pseudochydorus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Scapholeberis,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Alonella,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Diacyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Eurycercus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Leptodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Skistodiaptomus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Paracyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Ergasilus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Tropocyclops,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Anchistropus,0 +2014,Sep,2014-09-11,Upstream,C,NF,During,RD22,Acartia,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Sinocalanus,2518.5106150511892 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Pseudodiaptomus,5509.241970424479 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,NA,1087.157082163765 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Bosmina,2770.36167655631 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Diaphanosoma,944.441480644197 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Alona,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Chydorus,31.4813826881399 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Ceriodaphnia,94.444148064419693 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Daphnia,314.813826881399 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Diaptomus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Macrothrix,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Limnoithona,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Camptocercus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Acartiella,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Eurytemora,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Monospilus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Microcyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Eucyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Pleuroxus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Osphranticum,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Sida,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Disparalona,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Mesocyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Graptoleberis,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Kurzia,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Simocephalus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Moina,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Leydigia,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Macrocyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Scapholeberis,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Alonella,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Diacyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Eurycercus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Paracyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Ergasilus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Tropocyclops,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Anchistropus,0 +2014,Sep,2014-09-24,Upstream,C,NF,After,STTD,Acartia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Sinocalanus,18.1591073064717 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Pseudodiaptomus,1797.7516233406968 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,NA,217.9092876776605 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Bosmina,290.545716903547 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Diaphanosoma,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Alona,18.1591073064717 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Chydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Ceriodaphnia,163.431965758245 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Daphnia,99.8750901855942 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Diaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Ilyocryptus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Macrothrix,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Limnoithona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Camptocercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Acartiella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Eurytemora,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Monospilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Microcyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Eucyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Pleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Osphranticum,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Sida,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Disparalona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Mesocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Graptoleberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Kurzia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Simocephalus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Moina,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Leydigia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Acanthocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Macrocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Picripleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Arctodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Pseudochydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Scapholeberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Alonella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Diacyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Eurycercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Leptodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Skistodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Paracyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Ergasilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Tropocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Anchistropus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,BL5,Acartia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Sinocalanus,81.2028877095293 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Pseudodiaptomus,4744.568724742497 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,NA,568.4202139667058 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Bosmina,46.4016501197311 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Diaphanosoma,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Alona,11.6004125299328 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Chydorus,11.6004125299328 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Ceriodaphnia,58.0020626496638 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Daphnia,92.8033002394621 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Diaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Ilyocryptus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Macrothrix,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Limnoithona,11.6004125299328 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Camptocercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Acartiella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Eurytemora,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Monospilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Microcyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Eucyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Pleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Osphranticum,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Sida,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Disparalona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Mesocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Graptoleberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Kurzia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Simocephalus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Moina,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Leydigia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Acanthocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Macrocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Picripleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Arctodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Pseudochydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Scapholeberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Alonella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Diacyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Eurycercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Leptodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Skistodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Paracyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Ergasilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Tropocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Anchistropus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,LIB,Acartia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Sinocalanus,5.29037737763243 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Pseudodiaptomus,1417.8211372054943 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,NA,26.4518868881622 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Bosmina,10.5807547552649 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Diaphanosoma,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Alona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Chydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Ceriodaphnia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Daphnia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Diaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Ilyocryptus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Macrothrix,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Limnoithona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Camptocercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Acartiella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Eurytemora,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Monospilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Microcyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Eucyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Pleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Osphranticum,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Sida,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Disparalona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Mesocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Graptoleberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Kurzia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Simocephalus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Moina,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Leydigia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Acanthocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Macrocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Picripleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Arctodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Pseudochydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Scapholeberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Alonella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Diacyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Eurycercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Leptodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Skistodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Paracyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Ergasilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Tropocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Anchistropus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RVB,Acartia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Sinocalanus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Pseudodiaptomus,797.9217610730461 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,NA,23.8185600320312 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Bosmina,15.8790400213542 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Diaphanosoma,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Alona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Chydorus,7.93952001067708 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Ceriodaphnia,3.96976000533854 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Daphnia,3.96976000533854 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Diaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Ilyocryptus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Macrothrix,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Limnoithona,3.96976000533854 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Camptocercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Acartiella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Eurytemora,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Monospilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Microcyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Eucyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Pleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Osphranticum,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Sida,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Disparalona,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Mesocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Graptoleberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Kurzia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Simocephalus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Moina,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Leydigia,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Acanthocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Macrocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Picripleuroxus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Arctodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Pseudochydorus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Scapholeberis,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Alonella,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Diacyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Eurycercus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Leptodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Skistodiaptomus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Paracyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Ergasilus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Tropocyclops,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Anchistropus,0 +2014,Sep,2014-09-24,Downstream,C,NF,After,RYI,Acartia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Sinocalanus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Pseudodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,NA,6714.347660071134 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Bosmina,17.2901656482518 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Diaphanosoma,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Alona,345.803312965037 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Chydorus,155.611490834267 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Ceriodaphnia,51.8704969447555 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Daphnia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Diaptomus,17.2901656482518 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Ilyocryptus,138.321325186015 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Macrothrix,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Limnoithona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Camptocercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Acartiella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Eurytemora,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Monospilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Microcyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Eucyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Pleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Osphranticum,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Sida,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Disparalona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Mesocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Graptoleberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Kurzia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Simocephalus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Moina,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Leydigia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Acanthocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Macrocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Picripleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Pseudochydorus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Scapholeberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Alonella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Diacyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Eurycercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Paracyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Ergasilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Tropocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Anchistropus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,I80,Acartia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Sinocalanus,82.32691564681835 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Pseudodiaptomus,108.9620942384361 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,NA,2086.422323010055 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Bosmina,19.371038975722 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Diaphanosoma,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Alona,12.1068993598262 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Chydorus,4.84275974393049 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Ceriodaphnia,9.68551948786099 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Daphnia,9.68551948786099 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Diaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Ilyocryptus,36.3206980794787 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Macrothrix,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Limnoithona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Camptocercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Acartiella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Eurytemora,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Monospilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Microcyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Eucyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Pleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Osphranticum,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Sida,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Disparalona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Mesocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Graptoleberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Kurzia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Simocephalus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Moina,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Leydigia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Macrocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Scapholeberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Alonella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Diacyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Eurycercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Paracyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Ergasilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Tropocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Anchistropus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,LIS,Acartia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Sinocalanus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Pseudodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,NA,6317.827956220301 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Bosmina,70.2062141216749 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Diaphanosoma,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Alona,17.5515535304187 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Chydorus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Ceriodaphnia,21.9394419130234 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Daphnia,30.7152186782328 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Diaptomus,13.16366514781404 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Ilyocryptus,57.0425489738608 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Macrothrix,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Limnoithona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Camptocercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Acartiella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Eurytemora,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Monospilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Microcyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Eucyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Pleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Osphranticum,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Sida,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Disparalona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Mesocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Graptoleberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Kurzia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Simocephalus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Moina,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Leydigia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Macrocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Arctodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Scapholeberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Alonella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Diacyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Eurycercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Paracyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Ergasilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Tropocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Anchistropus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RCS,Acartia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Sinocalanus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Pseudodiaptomus,1.01149049496172 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,NA,116.32140692059741 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Bosmina,9.6091597021363 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Diaphanosoma,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Alona,10.1149049496172 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Chydorus,6.0689429697703 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Ceriodaphnia,5.05745247480858 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Daphnia,1.01149049496172 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Diaptomus,2.02298098992343 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Ilyocryptus,4.04596197984687 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Macrothrix,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Limnoithona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Camptocercus,2.52872623740429 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Acartiella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Eurytemora,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Monospilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Microcyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Eucyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Pleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Osphranticum,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Sida,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Disparalona,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Mesocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Graptoleberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Kurzia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Simocephalus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Moina,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Leydigia,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Acanthocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Macrocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Picripleuroxus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Arctodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Scapholeberis,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Alonella,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Diacyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Eurycercus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Paracyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Ergasilus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Tropocyclops,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Anchistropus,0 +2014,Sep,2014-09-25,Upstream,C,NF,After,RD22,Acartia,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Sinocalanus,1770.512962380989 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Pseudodiaptomus,13065.164618949344 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,NA,6491.880862063626 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Bosmina,1892.61730461416 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Diaphanosoma,122.104342233172 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Alona,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Chydorus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Ceriodaphnia,244.208684466343 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Daphnia,61.0521711165858 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Diaptomus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Macrothrix,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Limnoithona,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Camptocercus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Acartiella,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Eurytemora,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Monospilus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Microcyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Eucyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Pleuroxus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Osphranticum,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Sida,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Disparalona,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Mesocyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Graptoleberis,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Kurzia,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Simocephalus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Moina,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Leydigia,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Macrocyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Scapholeberis,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Alonella,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Diacyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Eurycercus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Paracyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Ergasilus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Tropocyclops,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Anchistropus,0 +2014,Oct,2014-10-07,Upstream,C,NF,After,STTD,Acartia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Sinocalanus,334.6905410928144 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Pseudodiaptomus,5924.022577342813 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,NA,3012.214869835331 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Bosmina,33.4690541092814 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Diaphanosoma,66.9381082185629 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Alona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Chydorus,33.4690541092814 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Ceriodaphnia,100.407162327844 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Daphnia,33.4690541092814 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Diaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Ilyocryptus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Macrothrix,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Limnoithona,66.9381082185629 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Camptocercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Acartiella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Eurytemora,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Monospilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Microcyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Eucyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Pleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Osphranticum,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Sida,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Disparalona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Mesocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Graptoleberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Kurzia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Simocephalus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Moina,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Leydigia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Acanthocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Macrocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Picripleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Arctodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Pseudochydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Scapholeberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Alonella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Diacyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Eurycercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Leptodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Skistodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Paracyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Ergasilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Tropocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Anchistropus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,BL5,Acartia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Sinocalanus,88.1949171796258 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Pseudodiaptomus,4564.086964045639 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,NA,1638.9555442547087 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Bosmina,44.0974585898129 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Diaphanosoma,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Alona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Chydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Ceriodaphnia,22.0487292949065 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Daphnia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Diaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Ilyocryptus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Macrothrix,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Limnoithona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Camptocercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Acartiella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Eurytemora,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Monospilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Microcyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Eucyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Pleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Osphranticum,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Sida,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Disparalona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Mesocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Graptoleberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Kurzia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Simocephalus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Moina,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Leydigia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Acanthocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Macrocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Picripleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Arctodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Pseudochydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Scapholeberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Alonella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Diacyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Eurycercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Leptodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Skistodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Paracyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Ergasilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Tropocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Anchistropus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,LIB,Acartia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Sinocalanus,35.2691825175496 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Pseudodiaptomus,7159.6440510625625 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,NA,458.4993727281441 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Bosmina,35.2691825175496 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Diaphanosoma,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Alona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Chydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Ceriodaphnia,35.2691825175496 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Daphnia,35.2691825175496 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Diaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Ilyocryptus,35.2691825175496 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Macrothrix,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Limnoithona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Camptocercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Acartiella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Eurytemora,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Monospilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Microcyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Eucyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Pleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Osphranticum,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Sida,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Disparalona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Mesocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Graptoleberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Kurzia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Simocephalus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Moina,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Leydigia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Acanthocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Macrocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Picripleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Arctodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Pseudochydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Scapholeberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Alonella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Diacyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Eurycercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Leptodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Skistodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Paracyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Ergasilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Tropocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Anchistropus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RVB,Acartia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Sinocalanus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Pseudodiaptomus,3476.069078348396 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,NA,965.5747439856657 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Bosmina,228.226757669339 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Diaphanosoma,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Alona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Chydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Ceriodaphnia,17.555904436103 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Daphnia,17.555904436103 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Diaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Ilyocryptus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Macrothrix,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Limnoithona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Camptocercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Acartiella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Eurytemora,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Monospilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Microcyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Eucyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Pleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Osphranticum,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Sida,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Disparalona,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Mesocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Graptoleberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Kurzia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Simocephalus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Moina,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Leydigia,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Acanthocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Macrocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Picripleuroxus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Arctodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Pseudochydorus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Scapholeberis,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Alonella,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Diacyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Eurycercus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Leptodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Skistodiaptomus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Paracyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Ergasilus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Tropocyclops,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Anchistropus,0 +2014,Oct,2014-10-07,Downstream,C,NF,After,RYI,Acartia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Sinocalanus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Pseudodiaptomus,12.9866476458263 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,NA,2153.6190679328674 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Bosmina,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Diaphanosoma,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Alona,668.812353760055 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Chydorus,97.3998573436974 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Ceriodaphnia,6.49332382291316 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Daphnia,6.49332382291316 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Diaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Ilyocryptus,71.4265620520447 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Macrothrix,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Limnoithona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Camptocercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Acartiella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Eurytemora,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Monospilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Microcyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Eucyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Pleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Osphranticum,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Sida,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Disparalona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Mesocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Graptoleberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Kurzia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Simocephalus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Moina,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Leydigia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Acanthocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Macrocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Picripleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Pseudochydorus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Scapholeberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Alonella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Diacyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Eurycercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Paracyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Ergasilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Tropocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Anchistropus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,I80,Acartia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Sinocalanus,233.4488370763439 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Pseudodiaptomus,78.58673723362091 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,NA,1990.0935517102196 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Bosmina,203.400966957607 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Diaphanosoma,249.628459447972 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Alona,16.1796223716278 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Chydorus,4.62274924903652 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Ceriodaphnia,36.9819939922922 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Daphnia,73.9639879845843 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Diaptomus,39.29336861681044 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Ilyocryptus,27.7364954942191 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Macrothrix,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Limnoithona,4.62274924903652 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Camptocercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Acartiella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Eurytemora,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Monospilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Microcyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Eucyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Pleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Osphranticum,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Sida,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Disparalona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Mesocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Graptoleberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Kurzia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Simocephalus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Moina,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Leydigia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Macrocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Scapholeberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Alonella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Diacyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Eurycercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Paracyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Ergasilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Tropocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Anchistropus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,LIS,Acartia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Sinocalanus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Pseudodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,NA,4067.3004470445153 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Bosmina,57.5068186600124 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Diaphanosoma,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Alona,2.61394630272784 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Chydorus,52.2789260545567 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Ceriodaphnia,28.7534093300062 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Daphnia,57.5068186600124 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Diaptomus,15.683677816367 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Ilyocryptus,13.0697315136392 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Macrothrix,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Limnoithona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Camptocercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Acartiella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Eurytemora,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Monospilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Microcyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Eucyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Pleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Osphranticum,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Sida,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Disparalona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Mesocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Graptoleberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Kurzia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Simocephalus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Moina,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Leydigia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Macrocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Arctodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Scapholeberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Alonella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Diacyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Eurycercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Paracyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Ergasilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Tropocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Anchistropus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RCS,Acartia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Sinocalanus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Pseudodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,NA,94.42147197981505 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Bosmina,5.39551268456086 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Diaphanosoma,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Alona,2.94300691885138 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Chydorus,1.96200461256758 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Ceriodaphnia,2.45250576570948 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Daphnia,2.94300691885138 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Diaptomus,0.735751729712844 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Ilyocryptus,1.22625288285474 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Macrothrix,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Limnoithona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Camptocercus,0.490501153141896 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Acartiella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Eurytemora,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Monospilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Microcyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Eucyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Pleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Osphranticum,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Sida,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Disparalona,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Mesocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Graptoleberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Kurzia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Simocephalus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Moina,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Leydigia,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Acanthocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Macrocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Picripleuroxus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Arctodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Scapholeberis,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Alonella,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Diacyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Eurycercus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Paracyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Ergasilus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Tropocyclops,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Anchistropus,0 +2014,Oct,2014-10-08,Upstream,C,NF,After,RD22,Acartia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Sinocalanus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Pseudodiaptomus,8.59472311835431 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,NA,504.4624985856295 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Bosmina,68.7577849468345 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Diaphanosoma,1.43245385305905 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Alona,94.5419543018974 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Chydorus,40.1087078856535 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Ceriodaphnia,20.0543539428267 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Daphnia,17.1894462367086 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Diaptomus,4.29736155917716 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Ilyocryptus,7.16226926529526 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Macrothrix,1.43245385305905 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Limnoithona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Camptocercus,5.72981541223621 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Acartiella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Eurytemora,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Monospilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Microcyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Eucyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Pleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Osphranticum,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Sida,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Disparalona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Mesocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Graptoleberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Kurzia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Simocephalus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Moina,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Leydigia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Acanthocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Macrocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Picripleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Pseudochydorus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Scapholeberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Alonella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Diacyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Eurycercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Paracyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Ergasilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Tropocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Anchistropus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,I80,Acartia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Sinocalanus,624.3622537363691 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Pseudodiaptomus,1456.845258718194 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,NA,2185.2678880772896 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Bosmina,906.811844712345 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Diaphanosoma,59.4630717844161 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Alona,14.865767946104 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Chydorus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Ceriodaphnia,178.389215353248 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Daphnia,104.060375622728 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Diaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Ilyocryptus,59.4630717844161 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Macrothrix,14.865767946104 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Limnoithona,89.1946076766241 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Camptocercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Acartiella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Eurytemora,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Monospilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Microcyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Eucyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Pleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Osphranticum,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Sida,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Disparalona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Mesocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Graptoleberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Kurzia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Simocephalus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Moina,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Leydigia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Macrocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Scapholeberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Alonella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Diacyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Eurycercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Paracyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Ergasilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Tropocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Anchistropus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,LIS,Acartia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Sinocalanus,90.1024408336381 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Pseudodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,NA,67216.420861894 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Bosmina,10361.7806958684 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Diaphanosoma,540.614645001828 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Alona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Chydorus,810.921967502743 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Ceriodaphnia,360.409763334552 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Daphnia,2432.76590250823 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Diaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Ilyocryptus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Macrothrix,90.1024408336381 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Limnoithona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Camptocercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Acartiella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Eurytemora,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Monospilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Microcyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Eucyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Pleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Osphranticum,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Sida,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Disparalona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Mesocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Graptoleberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Kurzia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Simocephalus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Moina,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Leydigia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Macrocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Arctodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Scapholeberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Alonella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Diacyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Eurycercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Paracyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Ergasilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Tropocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Anchistropus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RCS,Acartia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Sinocalanus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Pseudodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,NA,212.2400875682564 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Bosmina,86.7416010061568 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Diaphanosoma,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Alona,5.5366979365632 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Chydorus,6.4594809259904 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Ceriodaphnia,11.0733958731264 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Daphnia,13.841744841408 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Diaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Ilyocryptus,1.8455659788544 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Macrothrix,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Limnoithona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Camptocercus,9.227829894272 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Acartiella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Eurytemora,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Monospilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Microcyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Eucyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Pleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Osphranticum,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Sida,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Disparalona,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Mesocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Graptoleberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Kurzia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Simocephalus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Moina,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Leydigia,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Acanthocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Macrocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Picripleuroxus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Arctodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Scapholeberis,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Alonella,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Diacyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Eurycercus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Paracyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Ergasilus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Tropocyclops,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Anchistropus,0 +2014,Oct,2014-10-21,Upstream,C,NF,After,RD22,Acartia,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Sinocalanus,2642.55666027014 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Pseudodiaptomus,19687.047119012474 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,NA,53379.6445374567 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Bosmina,1981.9174952026 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Diaphanosoma,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Alona,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Chydorus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Ceriodaphnia,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Daphnia,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Diaptomus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Macrothrix,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Limnoithona,2642.55666027013 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Camptocercus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Acartiella,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Eurytemora,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Monospilus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Microcyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Eucyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Pleuroxus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Osphranticum,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Sida,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Disparalona,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Mesocyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Graptoleberis,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Kurzia,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Simocephalus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Moina,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Leydigia,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Macrocyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Scapholeberis,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Alonella,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Diacyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Eurycercus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Paracyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Ergasilus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Tropocyclops,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Anchistropus,0 +2014,Oct,2014-10-23,Upstream,C,NF,After,STTD,Acartia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Sinocalanus,593.922074245035 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Pseudodiaptomus,5689.148290136652 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,NA,12441.10450260652 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Bosmina,406.367735009761 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Diaphanosoma,31.2590565392124 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Alona,31.2590565392124 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Chydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Ceriodaphnia,125.036226156849 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Daphnia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Diaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Ilyocryptus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Macrothrix,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Limnoithona,1813.02527927432 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Camptocercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Acartiella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Eurytemora,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Monospilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Microcyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Eucyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Pleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Osphranticum,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Sida,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Disparalona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Mesocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Graptoleberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Kurzia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Simocephalus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Moina,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Leydigia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Acanthocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Macrocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Picripleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Arctodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Pseudochydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Scapholeberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Alonella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Diacyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Eurycercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Leptodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Skistodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Paracyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Ergasilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Tropocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Anchistropus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,BL5,Acartia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Sinocalanus,33.304254894026926 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Pseudodiaptomus,2156.450504388237 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,NA,374.42798333064087 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Bosmina,91.5867009585739 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Diaphanosoma,8.32606372350672 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Alona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Chydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Ceriodaphnia,8.32606372350672 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Daphnia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Diaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Ilyocryptus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Macrothrix,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Limnoithona,8.32606372350672 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Camptocercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Acartiella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Eurytemora,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Monospilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Microcyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Eucyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Pleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Osphranticum,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Sida,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Disparalona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Mesocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Graptoleberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Kurzia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Simocephalus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Moina,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Leydigia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Acanthocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Macrocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Picripleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Arctodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Pseudochydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Scapholeberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Alonella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Diacyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Eurycercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Leptodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Skistodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Paracyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Ergasilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Tropocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Anchistropus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,LIB,Acartia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Sinocalanus,9.08421222360692 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Pseudodiaptomus,1889.516142510241 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,NA,45.42106111803462 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Bosmina,36.3368488944277 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Diaphanosoma,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Alona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Chydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Ceriodaphnia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Daphnia,9.08421222360692 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Diaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Ilyocryptus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Macrothrix,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Limnoithona,18.1684244472138 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Camptocercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Acartiella,18.1684244472138 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Eurytemora,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Monospilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Microcyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Eucyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Pleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Osphranticum,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Sida,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Disparalona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Mesocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Graptoleberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Kurzia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Simocephalus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Moina,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Leydigia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Acanthocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Macrocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Picripleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Arctodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Pseudochydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Scapholeberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Alonella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Diacyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Eurycercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Leptodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Skistodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Paracyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Ergasilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Tropocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Anchistropus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RVB,Acartia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Sinocalanus,18.3806173099506 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Pseudodiaptomus,3005.230930176915 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,NA,531.5061838794039 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Bosmina,55.1418519298517 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Diaphanosoma,9.19030865497528 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Alona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Chydorus,9.19030865497528 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Ceriodaphnia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Daphnia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Diaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Ilyocryptus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Macrothrix,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Limnoithona,9.19030865497528 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Camptocercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Acartiella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Eurytemora,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Monospilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Microcyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Eucyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Pleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Osphranticum,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Sida,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Disparalona,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Mesocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Graptoleberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Kurzia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Simocephalus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Moina,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Leydigia,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Acanthocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Macrocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Picripleuroxus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Arctodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Pseudochydorus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Scapholeberis,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Alonella,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Diacyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Eurycercus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Leptodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Skistodiaptomus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Paracyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Ergasilus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Tropocyclops,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Anchistropus,0 +2014,Oct,2014-10-23,Downstream,C,NF,After,RYI,Acartia,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Sinocalanus,755.278347047445 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Pseudodiaptomus,3635.874833460959 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,NA,19689.93086139972 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Bosmina,685.019896159311 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Diaphanosoma,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Alona,193.21073994237 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Chydorus,17.5646127220336 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Ceriodaphnia,52.6938381661008 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Daphnia,52.6938381661008 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Diaptomus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Macrothrix,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Limnoithona,210.775352664403 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Camptocercus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Acartiella,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Eurytemora,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Monospilus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Microcyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Eucyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Pleuroxus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Osphranticum,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Sida,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Disparalona,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Mesocyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Graptoleberis,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Kurzia,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Simocephalus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Moina,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Leydigia,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Macrocyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Scapholeberis,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Alonella,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Diacyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Eurycercus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Paracyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Ergasilus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Tropocyclops,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Anchistropus,0 +2014,Nov,2014-11-05,Upstream,C,NF,After,STTD,Acartia,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Sinocalanus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Pseudodiaptomus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,NA,4.516119185447943 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Bosmina,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Diaphanosoma,0.0485604213489026 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Alona,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Chydorus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Ceriodaphnia,0.679845898884636 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Daphnia,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Diaptomus,1.16545011237366 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Ilyocryptus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Macrothrix,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Limnoithona,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Camptocercus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Acartiella,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Eurytemora,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Monospilus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Microcyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Eucyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Osphranticum,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Sida,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Disparalona,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Kurzia,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Simocephalus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Moina,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Leydigia,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Alonella,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Diacyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Eurycercus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Paracyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Ergasilus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Anchistropus,0 +2015,Jul,2015-07-15,Upstream,C,NF,Before,STTD,Acartia,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Sinocalanus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Pseudodiaptomus,2693.761700889243 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,NA,120.616195562205 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Bosmina,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Diaphanosoma,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Alona,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Chydorus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Ceriodaphnia,13.4017995069116 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Daphnia,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Diaptomus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Ilyocryptus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Macrothrix,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Limnoithona,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Camptocercus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Acartiella,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Eurytemora,13.4017995069116 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Monospilus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Microcyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Eucyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Osphranticum,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Sida,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Disparalona,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Kurzia,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Simocephalus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Moina,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Leydigia,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Alonella,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Diacyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Eurycercus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Paracyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Ergasilus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Anchistropus,0 +2015,Jul,2015-07-28,Upstream,C,NF,Before,STTD,Acartia,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Sinocalanus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Pseudodiaptomus,5545.793296050114 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,NA,248.015682594616 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Bosmina,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Diaphanosoma,16.2633234488273 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Alona,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Chydorus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Ceriodaphnia,32.5266468976546 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Daphnia,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Diaptomus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Ilyocryptus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Macrothrix,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Limnoithona,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Camptocercus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Acartiella,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Eurytemora,16.2633234488273 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Monospilus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Microcyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Eucyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Osphranticum,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Sida,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Disparalona,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Kurzia,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Simocephalus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Moina,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Leydigia,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Alonella,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Diacyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Eurycercus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Paracyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Ergasilus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Anchistropus,0 +2015,Aug,2015-08-03,Upstream,C,NF,Before,STTD,Acartia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Sinocalanus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Pseudodiaptomus,903.8051441416679 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,NA,104.82488886391953 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Bosmina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Diaphanosoma,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Alona,4.12696412850077 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Chydorus,4.12696412850077 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Ceriodaphnia,66.0314260560123 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Daphnia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Diaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Ilyocryptus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Macrothrix,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Limnoithona,4.12696412850077 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Camptocercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Acartiella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Eurytemora,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Monospilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Microcyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Eucyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Pleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Osphranticum,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Sida,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Disparalona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Mesocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Graptoleberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Kurzia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Simocephalus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Moina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Leydigia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Acanthocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Macrocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Picripleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Arctodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Pseudochydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Scapholeberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Alonella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Diacyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Eurycercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Leptodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Skistodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Paracyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Ergasilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Tropocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Anchistropus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,BL5,Acartia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Sinocalanus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Pseudodiaptomus,3231.738936054854 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,NA,93.39099497649775 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Bosmina,13.7520805789568 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Diaphanosoma,27.5041611579136 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Alona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Chydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Ceriodaphnia,165.024966947482 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Daphnia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Diaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Ilyocryptus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Macrothrix,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Limnoithona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Camptocercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Acartiella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Eurytemora,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Monospilus,41.2562417368704 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Microcyclops,13.7520805789568 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Eucyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Pleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Osphranticum,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Sida,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Disparalona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Mesocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Graptoleberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Kurzia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Simocephalus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Moina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Leydigia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Acanthocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Macrocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Picripleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Arctodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Pseudochydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Scapholeberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Alonella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Diacyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Eurycercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Leptodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Skistodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Paracyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Ergasilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Tropocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Anchistropus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,LIB,Acartia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Sinocalanus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Pseudodiaptomus,7523.296011818398 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,NA,155.68903629263713 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Bosmina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Diaphanosoma,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Alona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Chydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Ceriodaphnia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Daphnia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Diaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Ilyocryptus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Macrothrix,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Limnoithona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Camptocercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Acartiella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Eurytemora,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Monospilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Microcyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Eucyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Pleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Osphranticum,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Sida,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Disparalona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Mesocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Graptoleberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Kurzia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Simocephalus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Moina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Leydigia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Acanthocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Macrocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Picripleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Arctodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Pseudochydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Scapholeberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Alonella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Diacyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Eurycercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Leptodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Skistodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Paracyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Ergasilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Tropocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Anchistropus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RVB,Acartia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Sinocalanus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Pseudodiaptomus,2547.446920556611 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,NA,78.16030324435062 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Bosmina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Diaphanosoma,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Alona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Chydorus,23.1586083686965 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Ceriodaphnia,23.1586083686965 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Daphnia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Diaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Ilyocryptus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Macrothrix,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Limnoithona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Camptocercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Acartiella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Eurytemora,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Monospilus,11.5793041843482 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Microcyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Eucyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Pleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Osphranticum,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Sida,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Disparalona,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Mesocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Graptoleberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Kurzia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Simocephalus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Moina,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Leydigia,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Acanthocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Macrocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Picripleuroxus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Arctodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Pseudochydorus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Scapholeberis,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Alonella,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Diacyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Eurycercus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Leptodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Skistodiaptomus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Paracyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Ergasilus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Tropocyclops,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Anchistropus,0 +2015,Aug,2015-08-03,Downstream,C,NF,Before,RYI,Acartia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Sinocalanus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Pseudodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,NA,333.13332895072585 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Bosmina,4.9635911476899 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Diaphanosoma,3.72269336076743 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Alona,28.5406490992169 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Chydorus,19.8543645907596 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Ceriodaphnia,24.8179557384495 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Daphnia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Diaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Ilyocryptus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Macrothrix,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Limnoithona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Camptocercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Acartiella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Eurytemora,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Monospilus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Microcyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Eucyclops,8.68628450845733 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Pleuroxus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Osphranticum,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Sida,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Disparalona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Mesocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Graptoleberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Kurzia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Simocephalus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Moina,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Leydigia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Acanthocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Macrocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Picripleuroxus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Arctodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Pseudochydorus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Scapholeberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Alonella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Diacyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Eurycercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Leptodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Skistodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Paracyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Ergasilus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Tropocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Anchistropus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,I80,Acartia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Sinocalanus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Pseudodiaptomus,4.23619665845758 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,NA,765.3395296280033 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Bosmina,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Diaphanosoma,156.73927636293 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Alona,4.23619665845758 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Chydorus,4.23619665845758 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Ceriodaphnia,33.8895732676606 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Daphnia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Diaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Ilyocryptus,46.5981632430334 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Macrothrix,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Limnoithona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Camptocercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Acartiella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Eurytemora,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Monospilus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Microcyclops,4.23619665845758 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Eucyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Pleuroxus,8.47239331691516 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Osphranticum,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Sida,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Disparalona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Mesocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Graptoleberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Kurzia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Simocephalus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Moina,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Leydigia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Acanthocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Macrocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Picripleuroxus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Arctodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Pseudochydorus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Scapholeberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Alonella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Diacyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Eurycercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Leptodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Skistodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Paracyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Ergasilus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Tropocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Anchistropus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,LIS,Acartia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Sinocalanus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Pseudodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,NA,109.99619159514525 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Bosmina,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Diaphanosoma,279.040220008587 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Alona,32.9204753942715 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Chydorus,6.270566741766 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Ceriodaphnia,3.135283370883 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Daphnia,62.70566741766 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Diaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Ilyocryptus,32.9204753942715 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Macrothrix,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Limnoithona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Camptocercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Acartiella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Eurytemora,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Monospilus,1.5676416854415 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Microcyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Eucyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Pleuroxus,1.5676416854415 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Osphranticum,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Sida,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Disparalona,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Mesocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Graptoleberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Kurzia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Simocephalus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Moina,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Leydigia,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Acanthocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Macrocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Picripleuroxus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Arctodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Pseudochydorus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Scapholeberis,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Alonella,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Diacyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Eurycercus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Leptodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Skistodiaptomus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Paracyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Ergasilus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Tropocyclops,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Anchistropus,0 +2015,Aug,2015-08-04,Upstream,C,NF,Before,RD22,Acartia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Sinocalanus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Pseudodiaptomus,62.3082526013883 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,NA,3120.0280561880336 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Bosmina,12.4616505202777 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Diaphanosoma,336.464564047497 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Alona,24.9233010405553 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Chydorus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Ceriodaphnia,12.4616505202777 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Daphnia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Diaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Ilyocryptus,62.3082526013883 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Macrothrix,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Limnoithona,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Camptocercus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Acartiella,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Eurytemora,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Monospilus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Microcyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Eucyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Pleuroxus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Osphranticum,24.9233010405553 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Sida,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Disparalona,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Mesocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Graptoleberis,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Kurzia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Simocephalus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Moina,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Leydigia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Acanthocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Macrocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Picripleuroxus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Arctodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Pseudochydorus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Scapholeberis,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Alonella,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Diacyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Eurycercus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Leptodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Skistodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Paracyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Ergasilus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Tropocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Anchistropus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,LIS,Acartia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Sinocalanus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Pseudodiaptomus,77.8818018642663 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,NA,880.6874154811233 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Bosmina,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Diaphanosoma,3.11527207457065 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Alona,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Chydorus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Ceriodaphnia,21.8069045219946 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Daphnia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Diaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Ilyocryptus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Macrothrix,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Limnoithona,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Camptocercus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Acartiella,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Eurytemora,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Monospilus,3.11527207457065 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Microcyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Eucyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Pleuroxus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Osphranticum,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Sida,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Disparalona,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Mesocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Graptoleberis,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Kurzia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Simocephalus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Moina,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Leydigia,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Acanthocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Macrocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Picripleuroxus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Arctodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Pseudochydorus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Scapholeberis,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Alonella,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Diacyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Eurycercus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Leptodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Skistodiaptomus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Paracyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Ergasilus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Tropocyclops,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Anchistropus,0 +2015,Aug,2015-08-18,Upstream,C,NF,Before,STTD,Acartia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Sinocalanus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Pseudodiaptomus,2328.403491549789 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,NA,330.6448141644982 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Bosmina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Diaphanosoma,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Alona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Chydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Ceriodaphnia,29.4734619183518 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Daphnia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Diaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Ilyocryptus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Macrothrix,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Limnoithona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Camptocercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Acartiella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Eurytemora,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Monospilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Microcyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Eucyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Pleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Osphranticum,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Sida,19.6489746122345 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Disparalona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Mesocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Graptoleberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Kurzia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Simocephalus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Moina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Leydigia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Acanthocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Macrocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Picripleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Arctodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Pseudochydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Scapholeberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Alonella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Diacyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Eurycercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Leptodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Skistodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Paracyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Ergasilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Tropocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Anchistropus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,BL5,Acartia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Sinocalanus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Pseudodiaptomus,6057.716445805689 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,NA,113.52923129202281 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Bosmina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Diaphanosoma,63.542480200759 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Alona,21.1808267335863 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Chydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Ceriodaphnia,127.084960401518 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Daphnia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Diaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Ilyocryptus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Macrothrix,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Limnoithona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Camptocercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Acartiella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Eurytemora,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Monospilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Microcyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Eucyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Pleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Osphranticum,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Sida,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Disparalona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Mesocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Graptoleberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Kurzia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Simocephalus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Moina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Leydigia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Acanthocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Macrocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Picripleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Arctodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Pseudochydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Scapholeberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Alonella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Diacyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Eurycercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Leptodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Skistodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Paracyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Ergasilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Tropocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Anchistropus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,LIB,Acartia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Sinocalanus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Pseudodiaptomus,1255.29587345138 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,NA,12150.445383787537 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Bosmina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Diaphanosoma,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Alona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Chydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Ceriodaphnia,54.5780814544078 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Daphnia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Diaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Ilyocryptus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Macrothrix,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Limnoithona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Camptocercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Acartiella,218.312325817631 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Eurytemora,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Monospilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Microcyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Eucyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Pleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Osphranticum,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Sida,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Disparalona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Mesocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Graptoleberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Kurzia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Simocephalus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Moina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Leydigia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Acanthocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Macrocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Picripleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Arctodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Pseudochydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Scapholeberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Alonella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Diacyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Eurycercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Leptodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Skistodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Paracyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Ergasilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Tropocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Anchistropus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RVB,Acartia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Sinocalanus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Pseudodiaptomus,10936.588118356303 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,NA,282.09453479887355 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Bosmina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Diaphanosoma,28.9327727998844 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Alona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Chydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Ceriodaphnia,86.7983183996533 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Daphnia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Diaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Ilyocryptus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Macrothrix,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Limnoithona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Camptocercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Acartiella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Eurytemora,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Monospilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Microcyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Eucyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Pleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Osphranticum,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Sida,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Disparalona,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Mesocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Graptoleberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Kurzia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Simocephalus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Moina,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Leydigia,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Acanthocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Macrocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Picripleuroxus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Arctodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Pseudochydorus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Scapholeberis,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Alonella,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Diacyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Eurycercus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Leptodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Skistodiaptomus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Paracyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Ergasilus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Tropocyclops,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Anchistropus,0 +2015,Aug,2015-08-18,Downstream,C,NF,Before,RYI,Acartia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Sinocalanus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Pseudodiaptomus,107.49542985884571 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,NA,2463.436934265211 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Bosmina,17.9159049764743 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Diaphanosoma,17.9159049764743 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Alona,116.453382347083 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Chydorus,152.285192300031 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Ceriodaphnia,286.654479623589 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Daphnia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Diaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Ilyocryptus,8.95795248823714 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Macrothrix,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Limnoithona,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Camptocercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Acartiella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Eurytemora,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Monospilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Microcyclops,44.7897624411857 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Eucyclops,35.8318099529486 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Pleuroxus,152.285192300031 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Osphranticum,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Sida,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Disparalona,206.032907229454 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Mesocyclops,17.9159049764743 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Graptoleberis,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Kurzia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Simocephalus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Moina,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Leydigia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Acanthocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Macrocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Picripleuroxus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Arctodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Pseudochydorus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Scapholeberis,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Alonella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Diacyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Eurycercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Leptodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Skistodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Paracyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Ergasilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Tropocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Anchistropus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,I80,Acartia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Sinocalanus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Pseudodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,NA,724.3393558326061 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Bosmina,7.64250199588916 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Diaphanosoma,12.7375033264819 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Alona,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Chydorus,109.542528607745 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Ceriodaphnia,50.9500133059277 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Daphnia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Diaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Ilyocryptus,137.565035926005 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Macrothrix,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Limnoithona,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Camptocercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Acartiella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Eurytemora,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Monospilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Microcyclops,30.5700079835566 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Eucyclops,25.4750066529639 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Pleuroxus,17.8325046570747 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Osphranticum,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Sida,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Disparalona,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Mesocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Graptoleberis,2.54750066529639 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Kurzia,2.54750066529639 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Simocephalus,2.54750066529639 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Moina,2.54750066529639 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Leydigia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Acanthocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Macrocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Picripleuroxus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Arctodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Pseudochydorus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Scapholeberis,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Alonella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Diacyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Eurycercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Leptodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Skistodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Paracyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Ergasilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Tropocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Anchistropus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RCS,Acartia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Sinocalanus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Pseudodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,NA,262.21928856424967 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Bosmina,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Diaphanosoma,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Alona,16.3546333823856 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Chydorus,14.9917472671868 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Ceriodaphnia,34.07215287997 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Daphnia,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Diaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Ilyocryptus,55.8783307231509 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Macrothrix,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Limnoithona,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Camptocercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Acartiella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Eurytemora,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Monospilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Microcyclops,8.17731669119281 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Eucyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Pleuroxus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Osphranticum,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Sida,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Disparalona,5.4515444607952 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Mesocyclops,2.7257722303976 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Graptoleberis,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Kurzia,55.8783307231509 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Simocephalus,4.0886583455964 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Moina,28.6206084191748 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Leydigia,1.3628861151988 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Acanthocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Macrocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Picripleuroxus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Arctodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Pseudochydorus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Scapholeberis,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Alonella,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Diacyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Eurycercus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Leptodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Skistodiaptomus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Paracyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Ergasilus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Tropocyclops,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Anchistropus,0 +2015,Aug,2015-08-19,Upstream,C,NF,Before,RD22,Acartia,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Sinocalanus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Pseudodiaptomus,4238.826879540295 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,NA,6231.177163448924 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Bosmina,30.4951574067647 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Diaphanosoma,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Alona,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Chydorus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Ceriodaphnia,91.4854722202942 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Daphnia,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Diaptomus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Ilyocryptus,30.4951574067647 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Macrothrix,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Limnoithona,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Camptocercus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Acartiella,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Eurytemora,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Monospilus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Microcyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Eucyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Pleuroxus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Osphranticum,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Sida,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Disparalona,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Mesocyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Graptoleberis,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Kurzia,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Simocephalus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Moina,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Leydigia,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Acanthocyclops,213.466101847353 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Macrocyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Picripleuroxus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Arctodiaptomus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Pseudochydorus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Scapholeberis,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Alonella,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Diacyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Eurycercus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Leptodiaptomus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Skistodiaptomus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Paracyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Ergasilus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Tropocyclops,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Anchistropus,0 +2015,Sep,2015-09-01,Upstream,C,NF,During,STTD,Acartia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Sinocalanus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Pseudodiaptomus,1556.5949437899683 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,NA,842.5378981466347 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Bosmina,24.7078562506344 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Diaphanosoma,19.7662850005075 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Alona,4.94157125012689 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Chydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Ceriodaphnia,84.0067112521571 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Daphnia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Diaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Ilyocryptus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Macrothrix,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Limnoithona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Camptocercus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Acartiella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Eurytemora,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Monospilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Microcyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Eucyclops,4.94157125012689 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Pleuroxus,4.94157125012689 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Osphranticum,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Sida,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Disparalona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Mesocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Graptoleberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Kurzia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Simocephalus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Moina,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Leydigia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Acanthocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Macrocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Picripleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Arctodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Pseudochydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Scapholeberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Alonella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Diacyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Eurycercus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Leptodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Skistodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Paracyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Ergasilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Tropocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Anchistropus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,BL5,Acartia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Sinocalanus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Pseudodiaptomus,5633.186904858656 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,NA,348.8866786754022 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Bosmina,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Diaphanosoma,46.9432242071555 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Alona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Chydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Ceriodaphnia,187.772896828622 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Daphnia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Diaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Ilyocryptus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Macrothrix,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Limnoithona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Camptocercus,15.6477414023852 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Acartiella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Eurytemora,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Monospilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Microcyclops,15.6477414023852 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Eucyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Pleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Osphranticum,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Sida,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Disparalona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Mesocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Graptoleberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Kurzia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Simocephalus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Moina,62.5909656095407 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Leydigia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Acanthocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Macrocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Picripleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Arctodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Pseudochydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Scapholeberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Alonella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Diacyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Eurycercus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Leptodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Skistodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Paracyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Ergasilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Tropocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Anchistropus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,LIB,Acartia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Sinocalanus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Pseudodiaptomus,584.9892643726457 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,NA,148.2562077977376 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Bosmina,39.3742774096973 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Diaphanosoma,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Alona,2.81244838640695 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Chydorus,8.43734515922086 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Ceriodaphnia,2.81244838640695 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Daphnia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Diaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Ilyocryptus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Macrothrix,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Limnoithona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Camptocercus,19.6871387048487 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Acartiella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Eurytemora,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Monospilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Microcyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Eucyclops,5.62489677281391 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Pleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Osphranticum,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Sida,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Disparalona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Mesocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Graptoleberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Kurzia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Simocephalus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Moina,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Leydigia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Acanthocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Macrocyclops,5.62489677281391 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Picripleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Arctodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Pseudochydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Scapholeberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Alonella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Diacyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Eurycercus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Leptodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Skistodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Paracyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Ergasilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Tropocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Anchistropus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RVB,Acartia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Sinocalanus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Pseudodiaptomus,15796.205224630394 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,NA,2220.3501319761535 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Bosmina,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Diaphanosoma,63.4385751993188 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Alona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Chydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Ceriodaphnia,190.315725597956 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Daphnia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Diaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Ilyocryptus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Macrothrix,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Limnoithona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Camptocercus,63.4385751993188 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Acartiella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Eurytemora,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Monospilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Microcyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Eucyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Pleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Osphranticum,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Sida,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Disparalona,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Mesocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Graptoleberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Kurzia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Simocephalus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Moina,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Leydigia,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Acanthocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Macrocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Picripleuroxus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Arctodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Pseudochydorus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Scapholeberis,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Alonella,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Diacyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Eurycercus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Leptodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Skistodiaptomus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Paracyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Ergasilus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Tropocyclops,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Anchistropus,0 +2015,Sep,2015-09-01,Downstream,C,NF,During,RYI,Acartia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Sinocalanus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Pseudodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,NA,2231.9819385817473 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Bosmina,18.1955049340903 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Diaphanosoma,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Alona,115.238197915905 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Chydorus,90.9775246704517 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Ceriodaphnia,109.173029604542 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Daphnia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Diaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Ilyocryptus,6.06516831136344 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Macrothrix,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Limnoithona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Camptocercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Acartiella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Eurytemora,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Monospilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Microcyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Eucyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Pleuroxus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Osphranticum,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Sida,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Disparalona,84.912356359088193 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Mesocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Graptoleberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Kurzia,145.564039472723 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Simocephalus,18.1955049340903 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Moina,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Leydigia,48.5213464909076 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Acanthocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Macrocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Picripleuroxus,36.3910098681807 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Arctodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Pseudochydorus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Scapholeberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Alonella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Diacyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Eurycercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Leptodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Skistodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Paracyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Ergasilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Tropocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Anchistropus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,I80,Acartia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Sinocalanus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Pseudodiaptomus,13.8682477471096 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,NA,3069.5055013602423 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Bosmina,27.7364954942191 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Diaphanosoma,346.706193677739 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Alona,83.2094864826574 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Chydorus,138.682477471096 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Ceriodaphnia,235.760211700863 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Daphnia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Diaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Ilyocryptus,346.706193677739 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Macrothrix,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Limnoithona,27.7364954942191 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Camptocercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Acartiella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Eurytemora,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Monospilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Microcyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Eucyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Pleuroxus,27.7364954942191 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Osphranticum,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Sida,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Disparalona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Mesocyclops,13.8682477471096 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Graptoleberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Kurzia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Simocephalus,13.8682477471096 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Moina,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Leydigia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Acanthocyclops,110.945981976877 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Macrocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Picripleuroxus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Arctodiaptomus,13.8682477471096 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Pseudochydorus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Scapholeberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Alonella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Diacyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Eurycercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Leptodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Skistodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Paracyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Ergasilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Tropocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Anchistropus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,LIS,Acartia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Sinocalanus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Pseudodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,NA,398.8987035725836 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Bosmina,76.3442494875759 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Diaphanosoma,14.3145467789205 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Alona,104.973343045417 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Chydorus,152.688498975152 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Ceriodaphnia,85.8872806735229 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Daphnia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Diaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Ilyocryptus,167.003045754072 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Macrothrix,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Limnoithona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Camptocercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Acartiella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Eurytemora,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Monospilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Microcyclops,28.629093557841 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Eucyclops,14.3145467789205 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Pleuroxus,52.4866715227084 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Osphranticum,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Sida,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Disparalona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Mesocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Graptoleberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Kurzia,62.0297027086554 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Simocephalus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Moina,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Leydigia,9.54303118594699 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Acanthocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Macrocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Picripleuroxus,4.77151559297349 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Arctodiaptomus,4.77151559297349 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Pseudochydorus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Scapholeberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Alonella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Diacyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Eurycercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Leptodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Skistodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Paracyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Ergasilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Tropocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Anchistropus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RCS,Acartia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Sinocalanus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Pseudodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,NA,420.59441377206963 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Bosmina,85.0164927838056 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Diaphanosoma,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Alona,415.080523591521 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Chydorus,270.052388842677 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Ceriodaphnia,230.04462753265 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Daphnia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Diaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Ilyocryptus,305.05917998895 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Macrothrix,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Limnoithona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Camptocercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Acartiella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Eurytemora,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Monospilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Microcyclops,40.0077613100262 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Eucyclops,5.00097016375327 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Pleuroxus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Osphranticum,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Sida,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Disparalona,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Mesocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Graptoleberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Kurzia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Simocephalus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Moina,30.0058209825196 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Leydigia,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Acanthocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Macrocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Picripleuroxus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Arctodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Pseudochydorus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Scapholeberis,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Alonella,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Diacyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Eurycercus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Leptodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Skistodiaptomus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Paracyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Ergasilus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Tropocyclops,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Anchistropus,0 +2015,Sep,2015-09-02,Upstream,C,NF,During,RD22,Acartia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Sinocalanus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Pseudodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,NA,573.027277900299 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Bosmina,9.96569178957041 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Diaphanosoma,46.5065616846619 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Alona,63.1160480006126 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Chydorus,112.944506948465 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Ceriodaphnia,116.266404211655 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Daphnia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Diaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Ilyocryptus,86.3693288429435 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Macrothrix,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Limnoithona,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Camptocercus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Acartiella,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Eurytemora,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Monospilus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Microcyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Eucyclops,9.96569178957041 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Pleuroxus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Osphranticum,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Sida,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Disparalona,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Mesocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Graptoleberis,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Kurzia,36.5408698950915 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Simocephalus,9.96569178957041 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Moina,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Leydigia,3.32189726319014 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Acanthocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Macrocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Picripleuroxus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Arctodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Pseudochydorus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Scapholeberis,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Alonella,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Diacyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Eurycercus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Leptodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Skistodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Paracyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Ergasilus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Tropocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Anchistropus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,LIS,Acartia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Sinocalanus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Pseudodiaptomus,90.9669027541873 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,NA,1191.5039851820782 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Bosmina,9.74645386652007 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Diaphanosoma,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Alona,29.2393615995602 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Chydorus,16.2440897775334 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Ceriodaphnia,87.7180847986806 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Daphnia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Diaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Ilyocryptus,12.9952718220268 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Macrothrix,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Limnoithona,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Camptocercus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Acartiella,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Eurytemora,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Monospilus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Microcyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Eucyclops,3.24881795550669 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Pleuroxus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Osphranticum,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Sida,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Disparalona,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Mesocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Graptoleberis,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Kurzia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Simocephalus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Moina,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Leydigia,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Acanthocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Macrocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Picripleuroxus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Arctodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Pseudochydorus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Scapholeberis,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Alonella,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Diacyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Eurycercus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Leptodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Skistodiaptomus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Paracyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Ergasilus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Tropocyclops,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Anchistropus,0 +2015,Sep,2015-09-15,Upstream,C,NF,During,STTD,Acartia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Sinocalanus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Pseudodiaptomus,176.434034310482 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,NA,9572.806604445863 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Bosmina,100.819448177418 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Diaphanosoma,126.024310221773 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Alona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Chydorus,25.2048620443546 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Ceriodaphnia,1310.65282630644 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Daphnia,50.4097240887091 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Diaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Ilyocryptus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Macrothrix,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Limnoithona,25.2048620443546 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Camptocercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Acartiella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Eurytemora,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Monospilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Microcyclops,25.2048620443546 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Eucyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Pleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Osphranticum,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Sida,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Disparalona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Mesocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Graptoleberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Kurzia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Simocephalus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Moina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Leydigia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Acanthocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Macrocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Picripleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Arctodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Pseudochydorus,25.2048620443546 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Scapholeberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Alonella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Diacyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Eurycercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Leptodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Skistodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Paracyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Ergasilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Tropocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Anchistropus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,BL5,Acartia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Sinocalanus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Pseudodiaptomus,13947.469937789849 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,NA,14883.541745695153 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Bosmina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Diaphanosoma,93.6071807905356 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Alona,46.8035903952678 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Chydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Ceriodaphnia,234.017951976339 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Daphnia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Diaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Ilyocryptus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Macrothrix,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Limnoithona,374.428723162142 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Camptocercus,46.8035903952678 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Acartiella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Eurytemora,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Monospilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Microcyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Eucyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Pleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Osphranticum,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Sida,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Disparalona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Mesocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Graptoleberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Kurzia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Simocephalus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Moina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Leydigia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Acanthocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Macrocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Picripleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Arctodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Pseudochydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Scapholeberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Alonella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Diacyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Eurycercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Leptodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Skistodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Paracyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Ergasilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Tropocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Anchistropus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,LIB,Acartia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Sinocalanus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Pseudodiaptomus,87.4465208405911 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,NA,9964.531049785352 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Bosmina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Diaphanosoma,34.9786083362364 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Alona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Chydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Ceriodaphnia,34.9786083362364 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Daphnia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Diaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Ilyocryptus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Macrothrix,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Limnoithona,87.4465208405911 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Camptocercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Acartiella,17.4893041681182 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Eurytemora,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Monospilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Microcyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Eucyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Pleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Osphranticum,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Sida,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Disparalona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Mesocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Graptoleberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Kurzia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Simocephalus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Moina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Leydigia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Acanthocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Macrocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Picripleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Arctodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Pseudochydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Scapholeberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Alonella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Diacyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Eurycercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Leptodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Skistodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Paracyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Ergasilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Tropocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Anchistropus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RVB,Acartia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Sinocalanus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Pseudodiaptomus,6510.4840779727 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,NA,9193.196110102153 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Bosmina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Diaphanosoma,65.4320007836452 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Alona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Chydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Ceriodaphnia,130.86400156729 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Daphnia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Diaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Ilyocryptus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Macrothrix,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Limnoithona,229.012002742758 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Camptocercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Acartiella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Eurytemora,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Monospilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Microcyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Eucyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Pleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Osphranticum,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Sida,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Disparalona,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Mesocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Graptoleberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Kurzia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Simocephalus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Moina,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Leydigia,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Acanthocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Macrocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Picripleuroxus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Arctodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Pseudochydorus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Scapholeberis,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Alonella,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Diacyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Eurycercus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Leptodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Skistodiaptomus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Paracyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Ergasilus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Tropocyclops,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Anchistropus,0 +2015,Sep,2015-09-15,Downstream,C,NF,During,RYI,Acartia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Sinocalanus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Pseudodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,NA,715.1703220014525 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Bosmina,95.356042933527 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Diaphanosoma,14.3034064400291 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Alona,143.034064400291 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Chydorus,171.640877280349 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Ceriodaphnia,90.5882407868507 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Daphnia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Diaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Ilyocryptus,85.8204386401743 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Macrothrix,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Limnoithona,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Camptocercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Acartiella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Eurytemora,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Monospilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Microcyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Eucyclops,42.9102193200872 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Pleuroxus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Osphranticum,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Sida,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Disparalona,33.3746150267345 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Mesocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Graptoleberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Kurzia,66.7492300534689 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Simocephalus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Moina,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Leydigia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Acanthocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Macrocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Picripleuroxus,20.6604759689309 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Arctodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Pseudochydorus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Scapholeberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Alonella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Diacyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Eurycercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Leptodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Skistodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Paracyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Ergasilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Tropocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Anchistropus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,I80,Acartia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Sinocalanus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Pseudodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,NA,442.3930085807598 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Bosmina,105.152837353661 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Diaphanosoma,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Alona,75.1091695383292 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Chydorus,135.196505168993 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Ceriodaphnia,48.820960199914 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Daphnia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Diaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Ilyocryptus,18.7772923845823 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Macrothrix,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Limnoithona,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Camptocercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Acartiella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Eurytemora,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Monospilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Microcyclops,15.0218339076658 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Eucyclops,11.2663754307494 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Pleuroxus,7.51091695383292 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Osphranticum,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Sida,7.51091695383292 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Disparalona,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Mesocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Graptoleberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Kurzia,63.8427941075798 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Simocephalus,15.0218339076658 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Moina,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Leydigia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Acanthocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Macrocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Picripleuroxus,3.75545847691646 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Arctodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Pseudochydorus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Scapholeberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Alonella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Diacyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Eurycercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Leptodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Skistodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Paracyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Ergasilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Tropocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Anchistropus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RCS,Acartia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Sinocalanus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Pseudodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,NA,652.3100051980002 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Bosmina,20.6559845611115 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Diaphanosoma,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Alona,103.279922805558 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Chydorus,206.559845611115 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Ceriodaphnia,261.642471107413 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Daphnia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Diaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Ilyocryptus,82.6239382444461 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Macrothrix,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Limnoithona,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Camptocercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Acartiella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Eurytemora,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Monospilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Microcyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Eucyclops,20.6559845611115 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Pleuroxus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Osphranticum,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Sida,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Disparalona,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Mesocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Graptoleberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Kurzia,426.890347596305 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Simocephalus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Moina,75.7386100574089 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Leydigia,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Acanthocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Macrocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Picripleuroxus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Arctodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Pseudochydorus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Scapholeberis,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Alonella,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Diacyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Eurycercus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Leptodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Skistodiaptomus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Paracyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Ergasilus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Tropocyclops,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Anchistropus,0 +2015,Sep,2015-09-16,Upstream,C,NF,During,RD22,Acartia,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Sinocalanus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Pseudodiaptomus,653.2926588635116 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,NA,120.86995799337308 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Bosmina,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Diaphanosoma,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Alona,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Chydorus,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Ceriodaphnia,112.487477685108 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Daphnia,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Diaptomus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Ilyocryptus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Macrothrix,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Limnoithona,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Camptocercus,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Acartiella,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Eurytemora,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Monospilus,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Microcyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Eucyclops,8.65288289885445 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Pleuroxus,30.2850901459906 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Osphranticum,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Sida,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Disparalona,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Mesocyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Graptoleberis,4.32644144942723 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Kurzia,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Simocephalus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Moina,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Leydigia,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Acanthocyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Macrocyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Picripleuroxus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Arctodiaptomus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Pseudochydorus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Scapholeberis,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Alonella,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Diacyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Eurycercus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Leptodiaptomus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Skistodiaptomus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Paracyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Ergasilus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Tropocyclops,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Anchistropus,0 +2015,Oct,2015-10-01,Upstream,C,NF,During,STTD,Acartia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Sinocalanus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Pseudodiaptomus,2024.2693557556245 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,NA,347.4834383652999 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Bosmina,51.7149105485013 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Diaphanosoma,14.7756887281432 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Alona,7.38784436407161 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Chydorus,7.38784436407161 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Ceriodaphnia,192.083953465862 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Daphnia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Diaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Ilyocryptus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Macrothrix,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Limnoithona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Camptocercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Acartiella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Eurytemora,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Monospilus,7.38784436407161 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Microcyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Eucyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Pleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Osphranticum,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Sida,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Disparalona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Mesocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Graptoleberis,7.38784436407161 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Kurzia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Simocephalus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Moina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Leydigia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Acanthocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Macrocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Picripleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Arctodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Pseudochydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Scapholeberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Alonella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Diacyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Eurycercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Leptodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Skistodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Paracyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Ergasilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Tropocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Anchistropus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,BL5,Acartia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Sinocalanus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Pseudodiaptomus,6178.81696700952 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,NA,549.6412170910925 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Bosmina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Diaphanosoma,138.074122167811 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Alona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Chydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Ceriodaphnia,207.111183251716 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Daphnia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Diaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Ilyocryptus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Macrothrix,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Limnoithona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Camptocercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Acartiella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Eurytemora,793.926202464911 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Monospilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Microcyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Eucyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Pleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Osphranticum,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Sida,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Disparalona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Mesocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Graptoleberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Kurzia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Simocephalus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Moina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Leydigia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Acanthocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Macrocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Picripleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Arctodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Pseudochydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Scapholeberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Alonella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Diacyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Eurycercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Leptodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Skistodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Paracyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Ergasilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Tropocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Anchistropus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,LIB,Acartia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Sinocalanus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Pseudodiaptomus,680.692860285792 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,NA,2571.5063610796524 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Bosmina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Diaphanosoma,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Alona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Chydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Ceriodaphnia,24.3104592959211 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Daphnia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Diaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Ilyocryptus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Macrothrix,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Limnoithona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Camptocercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Acartiella,60.7761482398028 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Eurytemora,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Monospilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Microcyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Eucyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Pleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Osphranticum,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Sida,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Disparalona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Mesocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Graptoleberis,12.1552296479606 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Kurzia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Simocephalus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Moina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Leydigia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Acanthocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Macrocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Picripleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Arctodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Pseudochydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Scapholeberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Alonella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Diacyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Eurycercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Leptodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Skistodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Paracyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Ergasilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Tropocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Anchistropus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RVB,Acartia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Sinocalanus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Pseudodiaptomus,4035.493508850358 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,NA,200.1071161413401 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Bosmina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Diaphanosoma,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Alona,31.9011344573151 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Chydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Ceriodaphnia,143.555105057918 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Daphnia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Diaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Ilyocryptus,31.9011344573151 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Macrothrix,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Limnoithona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Camptocercus,15.9505672286576 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Acartiella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Eurytemora,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Monospilus,63.8022689146302 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Microcyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Eucyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Pleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Osphranticum,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Sida,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Disparalona,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Mesocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Graptoleberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Kurzia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Simocephalus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Moina,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Leydigia,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Acanthocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Macrocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Picripleuroxus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Arctodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Pseudochydorus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Scapholeberis,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Alonella,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Diacyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Eurycercus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Leptodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Skistodiaptomus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Paracyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Ergasilus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Tropocyclops,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Anchistropus,0 +2015,Oct,2015-10-01,Downstream,C,NF,During,RYI,Acartia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Sinocalanus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Pseudodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,NA,7473.809652973198 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Bosmina,674.277480842357 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Diaphanosoma,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Alona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Chydorus,214.542834813477 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Ceriodaphnia,30.6489764019253 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Daphnia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Diaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Ilyocryptus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Macrothrix,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Limnoithona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Camptocercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Acartiella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Eurytemora,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Monospilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Microcyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Eucyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Pleuroxus,275.840787617328 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Osphranticum,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Sida,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Disparalona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Mesocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Graptoleberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Kurzia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Simocephalus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Moina,153.244882009627 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Leydigia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Acanthocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Macrocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Picripleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Pseudochydorus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Scapholeberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Alonella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Diacyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Eurycercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Paracyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Ergasilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Tropocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Anchistropus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,I80,Acartia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Sinocalanus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Pseudodiaptomus,12494.505978879375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,NA,892.2506068883866 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Bosmina,409.65593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Diaphanosoma,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Alona,40.965593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Chydorus,40.965593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Ceriodaphnia,450.621527107125 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Daphnia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Diaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Ilyocryptus,40.965593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Macrothrix,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Limnoithona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Camptocercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Acartiella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Eurytemora,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Monospilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Microcyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Eucyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Pleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Osphranticum,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Sida,40.965593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Disparalona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Mesocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Graptoleberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Kurzia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Simocephalus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Moina,40.965593373375 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Leydigia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Macrocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Scapholeberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Alonella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Diacyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Eurycercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Paracyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Ergasilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Tropocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Anchistropus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,LIS,Acartia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Sinocalanus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Pseudodiaptomus,2.32089714169792 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,NA,289.1837838555614 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Bosmina,547.73172544071 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Diaphanosoma,18.5671771335834 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Alona,13.9253828501875 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Chydorus,9.2835885667917 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Ceriodaphnia,32.4925599837709 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Daphnia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Diaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Ilyocryptus,2.32089714169792 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Macrothrix,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Limnoithona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Camptocercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Acartiella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Eurytemora,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Monospilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Microcyclops,2.32089714169792 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Eucyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Pleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Osphranticum,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Sida,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Disparalona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Mesocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Graptoleberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Kurzia,4.64179428339585 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Simocephalus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Moina,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Leydigia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Macrocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Arctodiaptomus,2.32089714169792 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Scapholeberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Alonella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Diacyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Eurycercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Paracyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Ergasilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Tropocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Anchistropus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RCS,Acartia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Sinocalanus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Pseudodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,NA,345.4448273789802 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Bosmina,86.8662431420827 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Diaphanosoma,8.08058075740304 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Alona,96.9669690888365 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Chydorus,88.8863883314335 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Ceriodaphnia,20.2014518935076 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Daphnia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Diaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Ilyocryptus,18.1813067041568 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Macrothrix,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Limnoithona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Camptocercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Acartiella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Eurytemora,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Monospilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Microcyclops,26.2618874615599 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Eucyclops,22.2215970828584 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Pleuroxus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Osphranticum,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Sida,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Disparalona,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Mesocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Graptoleberis,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Kurzia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Simocephalus,20.2014518935076 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Moina,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Leydigia,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Acanthocyclops,6.06043556805228 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Macrocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Picripleuroxus,20.2014518935076 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Arctodiaptomus,2.02014518935076 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Scapholeberis,2.02014518935076 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Alonella,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Diacyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Eurycercus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Paracyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Ergasilus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Tropocyclops,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Anchistropus,0 +2015,Oct,2015-10-02,Upstream,C,NF,After,RD22,Acartia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Sinocalanus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Pseudodiaptomus,3432.6611954260366 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,NA,85.05952761721299 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Bosmina,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Diaphanosoma,11.8367627428484 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Alona,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Chydorus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Ceriodaphnia,11.8367627428484 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Daphnia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Diaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Ilyocryptus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Macrothrix,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Limnoithona,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Camptocercus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Acartiella,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Eurytemora,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Monospilus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Microcyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Eucyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Pleuroxus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Osphranticum,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Sida,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Disparalona,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Mesocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Graptoleberis,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Kurzia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Simocephalus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Moina,11.8367627428484 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Leydigia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Macrocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Scapholeberis,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Alonella,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Diacyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Eurycercus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Paracyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Ergasilus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Tropocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Anchistropus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,LIS,Acartia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Sinocalanus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Pseudodiaptomus,2670.532831460394 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,NA,310.76020185912915 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Bosmina,16.0392362249873 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Diaphanosoma,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Alona,8.01961811249367 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Chydorus,8.01961811249367 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Ceriodaphnia,56.1373267874557 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Daphnia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Diaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Macrothrix,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Limnoithona,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Camptocercus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Acartiella,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Eurytemora,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Monospilus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Microcyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Eucyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Pleuroxus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Osphranticum,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Sida,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Disparalona,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Mesocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Graptoleberis,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Kurzia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Simocephalus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Moina,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Leydigia,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Macrocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Scapholeberis,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Alonella,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Diacyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Eurycercus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Paracyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Ergasilus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Tropocyclops,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Anchistropus,0 +2015,Oct,2015-10-13,Upstream,C,NF,After,STTD,Acartia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Sinocalanus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Pseudodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,NA,3605.5183256360315 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Bosmina,11.6872555125965 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Diaphanosoma,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Alona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Chydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Ceriodaphnia,116.872555125965 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Daphnia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Diaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Ilyocryptus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Macrothrix,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Limnoithona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Camptocercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Acartiella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Eurytemora,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Monospilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Microcyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Eucyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Pleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Osphranticum,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Sida,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Disparalona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Mesocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Graptoleberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Kurzia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Simocephalus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Moina,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Leydigia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Acanthocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Macrocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Picripleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Arctodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Pseudochydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Scapholeberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Alonella,11.6872555125965 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Diacyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Eurycercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Leptodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Skistodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Paracyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Ergasilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Tropocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Anchistropus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,BL5,Acartia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Sinocalanus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Pseudodiaptomus,3410.210954293061 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,NA,477.4848941684692 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Bosmina,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Diaphanosoma,15.2241560459512 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Alona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Chydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Ceriodaphnia,152.241560459512 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Daphnia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Diaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Ilyocryptus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Macrothrix,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Limnoithona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Camptocercus,30.4483120919023 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Acartiella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Eurytemora,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Monospilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Microcyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Eucyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Pleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Osphranticum,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Sida,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Disparalona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Mesocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Graptoleberis,15.2241560459512 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Kurzia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Simocephalus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Moina,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Leydigia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Acanthocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Macrocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Picripleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Arctodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Pseudochydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Scapholeberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Alonella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Diacyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Eurycercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Leptodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Skistodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Paracyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Ergasilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Tropocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Anchistropus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,LIB,Acartia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Sinocalanus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Pseudodiaptomus,28.1565863006443 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,NA,484.62734556447913 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Bosmina,16.0894778860824 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Diaphanosoma,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Alona,16.0894778860824 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Chydorus,8.04473894304122 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Ceriodaphnia,2.0111847357603 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Daphnia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Diaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Ilyocryptus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Macrothrix,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Limnoithona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Camptocercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Acartiella,26.145401564884 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Eurytemora,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Monospilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Microcyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Eucyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Pleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Osphranticum,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Sida,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Disparalona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Mesocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Graptoleberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Kurzia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Simocephalus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Moina,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Leydigia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Acanthocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Macrocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Picripleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Arctodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Pseudochydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Scapholeberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Alonella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Diacyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Eurycercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Leptodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Skistodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Paracyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Ergasilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Tropocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Anchistropus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RVB,Acartia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Sinocalanus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Pseudodiaptomus,2131.4252200971123 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,NA,310.8411897754862 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Bosmina,34.0483261996344 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Diaphanosoma,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Alona,27.2386609597075 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Chydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Ceriodaphnia,115.764309078757 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Daphnia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Diaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Ilyocryptus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Macrothrix,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Limnoithona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Camptocercus,34.0483261996344 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Acartiella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Eurytemora,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Monospilus,20.4289957197806 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Microcyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Eucyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Pleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Osphranticum,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Sida,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Disparalona,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Mesocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Graptoleberis,6.80966523992688 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Kurzia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Simocephalus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Moina,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Leydigia,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Acanthocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Macrocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Picripleuroxus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Arctodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Pseudochydorus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Scapholeberis,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Alonella,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Diacyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Eurycercus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Leptodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Skistodiaptomus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Paracyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Ergasilus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Tropocyclops,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Anchistropus,0 +2015,Oct,2015-10-13,Downstream,C,NF,After,RYI,Acartia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Sinocalanus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Pseudodiaptomus,38.293537354296205 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,NA,1020.5531621883058 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Bosmina,25.5290249028641 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Diaphanosoma,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Alona,25.5290249028641 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Chydorus,121.262868288605 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Ceriodaphnia,19.1467686771481 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Daphnia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Diaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Ilyocryptus,6.38225622571603 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Macrothrix,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Limnoithona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Camptocercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Acartiella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Eurytemora,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Monospilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Microcyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Eucyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Pleuroxus,695.665928603047 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Osphranticum,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Sida,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Disparalona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Mesocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Graptoleberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Kurzia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Simocephalus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Moina,19.1467686771481 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Leydigia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Acanthocyclops,63.8225622571603 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Macrocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Picripleuroxus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Pseudochydorus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Scapholeberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Alonella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Diacyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Eurycercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Paracyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Ergasilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Tropocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Anchistropus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,I80,Acartia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Sinocalanus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Pseudodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,NA,752.8601236596597 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Bosmina,662.946347750217 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Diaphanosoma,203.983491615451 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Alona,76.4938093557943 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Chydorus,152.987618711589 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Ceriodaphnia,140.238650485623 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Daphnia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Diaptomus,25.49793645193146 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Ilyocryptus,12.7489682259657 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Macrothrix,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Limnoithona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Camptocercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Acartiella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Eurytemora,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Monospilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Microcyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Eucyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Pleuroxus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Osphranticum,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Sida,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Disparalona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Mesocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Graptoleberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Kurzia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Simocephalus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Moina,50.9958729038628 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Leydigia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Macrocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Arctodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Scapholeberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Alonella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Diacyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Eurycercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Paracyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Ergasilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Tropocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Anchistropus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RCS,Acartia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Sinocalanus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Pseudodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,NA,2018.260700946944 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Bosmina,487.336120472555 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Diaphanosoma,4.92258707548035 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Alona,39.3806966038428 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Chydorus,118.142089811528 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Ceriodaphnia,29.5355224528821 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Daphnia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Diaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Ilyocryptus,24.6129353774018 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Macrothrix,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Limnoithona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Camptocercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Acartiella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Eurytemora,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Monospilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Microcyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Eucyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Pleuroxus,24.6129353774018 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Osphranticum,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Sida,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Disparalona,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Mesocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Graptoleberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Kurzia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Simocephalus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Moina,83.683980283166 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Leydigia,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Acanthocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Macrocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Picripleuroxus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Arctodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Scapholeberis,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Alonella,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Diacyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Eurycercus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Paracyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Ergasilus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Tropocyclops,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Anchistropus,0 +2015,Oct,2015-10-14,Upstream,C,NF,After,RD22,Acartia,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Sinocalanus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Pseudodiaptomus,756.054231161027 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,NA,751.6328613881556 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Bosmina,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Diaphanosoma,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Alona,6.63205465930725 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Chydorus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Ceriodaphnia,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Daphnia,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Diaptomus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Macrothrix,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Limnoithona,99.4808198896088 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Camptocercus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Acartiella,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Eurytemora,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Monospilus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Microcyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Eucyclops,6.63205465930725 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Pleuroxus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Osphranticum,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Sida,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Disparalona,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Mesocyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Graptoleberis,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Kurzia,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Simocephalus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Moina,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Leydigia,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Acanthocyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Macrocyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Scapholeberis,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Alonella,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Diacyclops,13.2641093186145 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Eurycercus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Paracyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Ergasilus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Tropocyclops,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Anchistropus,0 +2015,Oct,2015-10-27,Upstream,C,NF,After,STTD,Acartia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Sinocalanus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Pseudodiaptomus,135.839235142774 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,NA,853.3305143809333 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Bosmina,5.78039298479887 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Diaphanosoma,23.1215719391955 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Alona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Chydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Ceriodaphnia,586.709887957086 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Daphnia,2.89019649239944 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Diaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Ilyocryptus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Macrothrix,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Limnoithona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Camptocercus,8.67058947719831 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Acartiella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Eurytemora,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Monospilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Microcyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Eucyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Pleuroxus,14.4509824619972 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Osphranticum,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Sida,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Disparalona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Mesocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Graptoleberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Kurzia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Simocephalus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Moina,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Leydigia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Acanthocyclops,14.4509824619972 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Macrocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Picripleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Arctodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Pseudochydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Scapholeberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Alonella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Diacyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Eurycercus,8.67058947719831 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Leptodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Skistodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Paracyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Ergasilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Tropocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Anchistropus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,BL5,Acartia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Sinocalanus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Pseudodiaptomus,329.608732535487 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,NA,14337.979865293657 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Bosmina,41.2010915669359 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Diaphanosoma,41.2010915669359 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Alona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Chydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Ceriodaphnia,1277.23383857501 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Daphnia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Diaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Ilyocryptus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Macrothrix,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Limnoithona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Camptocercus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Acartiella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Eurytemora,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Monospilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Microcyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Eucyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Pleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Osphranticum,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Sida,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Disparalona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Mesocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Graptoleberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Kurzia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Simocephalus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Moina,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Leydigia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Acanthocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Macrocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Picripleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Arctodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Pseudochydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Scapholeberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Alonella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Diacyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Eurycercus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Leptodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Skistodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Paracyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Ergasilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Tropocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Anchistropus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,LIB,Acartia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Sinocalanus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Pseudodiaptomus,1947.372713762 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,NA,6626.837220016741 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Bosmina,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Diaphanosoma,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Alona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Chydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Ceriodaphnia,155.78981710096 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Daphnia,38.9474542752399 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Diaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Ilyocryptus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Macrothrix,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Limnoithona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Camptocercus,38.9474542752399 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Acartiella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Eurytemora,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Monospilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Microcyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Eucyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Pleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Osphranticum,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Sida,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Disparalona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Mesocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Graptoleberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Kurzia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Simocephalus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Moina,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Leydigia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Acanthocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Macrocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Picripleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Arctodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Pseudochydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Scapholeberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Alonella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Diacyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Eurycercus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Leptodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Skistodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Paracyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Ergasilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Tropocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Anchistropus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RVB,Acartia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Sinocalanus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Pseudodiaptomus,315.868100797914 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,NA,16109.273140693618 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Bosmina,37.1609530350487 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Diaphanosoma,74.3219060700975 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Alona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Chydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Ceriodaphnia,353.029053832963 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Daphnia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Diaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Ilyocryptus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Macrothrix,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Limnoithona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Camptocercus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Acartiella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Eurytemora,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Monospilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Microcyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Eucyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Pleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Osphranticum,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Sida,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Disparalona,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Mesocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Graptoleberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Kurzia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Simocephalus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Moina,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Leydigia,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Acanthocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Macrocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Picripleuroxus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Arctodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Pseudochydorus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Scapholeberis,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Alonella,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Diacyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Eurycercus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Leptodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Skistodiaptomus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Paracyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Ergasilus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Tropocyclops,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Anchistropus,0 +2015,Oct,2015-10-27,Downstream,C,NF,After,RYI,Acartia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Sinocalanus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Pseudodiaptomus,23.2755766103261 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,NA,1143.412700982272 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Bosmina,285.125813476495 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Diaphanosoma,17.4566824577446 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Alona,40.7322590680707 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Chydorus,93.1023064413045 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Ceriodaphnia,34.9133649154892 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Daphnia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Diaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Ilyocryptus,11.6377883051631 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Macrothrix,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Limnoithona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Camptocercus,5.81889415258153 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Acartiella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Eurytemora,11.6377883051631 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Monospilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Microcyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Eucyclops,11.6377883051631 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Pleuroxus,232.755766103261 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Osphranticum,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Sida,5.81889415258153 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Disparalona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Mesocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Graptoleberis,5.81889415258153 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Kurzia,17.4566824577446 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Simocephalus,46.5511532206523 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Moina,11.6377883051631 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Leydigia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Acanthocyclops,52.3700473732338 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Macrocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Picripleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Arctodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Pseudochydorus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Scapholeberis,11.6377883051631 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Alonella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Diacyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Eurycercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Leptodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Skistodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Paracyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Ergasilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Tropocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Anchistropus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,I80,Acartia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Sinocalanus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Pseudodiaptomus,275.343119060673 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,NA,6117.40581913061 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Bosmina,23.9428799183194 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Diaphanosoma,23.9428799183194 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Alona,11.9714399591597 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Chydorus,11.9714399591597 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Ceriodaphnia,47.8857598366388 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Daphnia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Diaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Ilyocryptus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Macrothrix,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Limnoithona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Camptocercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Acartiella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Eurytemora,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Monospilus,11.9714399591597 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Microcyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Eucyclops,71.8286397549582 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Pleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Osphranticum,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Sida,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Disparalona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Mesocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Graptoleberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Kurzia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Simocephalus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Moina,23.9428799183194 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Leydigia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Acanthocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Macrocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Picripleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Arctodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Pseudochydorus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Scapholeberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Alonella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Diacyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Eurycercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Leptodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Skistodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Paracyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Ergasilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Tropocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Anchistropus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,LIS,Acartia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Sinocalanus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Pseudodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,NA,181.4187855191149 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Bosmina,1753.71492668477 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Diaphanosoma,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Alona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Chydorus,83.1502766962608 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Ceriodaphnia,15.1182321265929 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Daphnia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Diaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Ilyocryptus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Macrothrix,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Limnoithona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Camptocercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Acartiella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Eurytemora,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Monospilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Microcyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Eucyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Pleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Osphranticum,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Sida,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Disparalona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Mesocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Graptoleberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Kurzia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Simocephalus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Moina,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Leydigia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Acanthocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Macrocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Picripleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Arctodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Pseudochydorus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Scapholeberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Alonella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Diacyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Eurycercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Leptodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Skistodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Paracyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Ergasilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Tropocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Anchistropus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RCS,Acartia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Sinocalanus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Pseudodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,NA,921.4807693863345 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Bosmina,938.846720281719 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Diaphanosoma,200.793807227882 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Alona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Chydorus,16.2805789644229 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Ceriodaphnia,5.42685965480763 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Daphnia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Diaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Ilyocryptus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Macrothrix,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Limnoithona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Camptocercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Acartiella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Eurytemora,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Monospilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Microcyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Eucyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Pleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Osphranticum,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Sida,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Disparalona,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Mesocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Graptoleberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Kurzia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Simocephalus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Moina,10.8537193096153 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Leydigia,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Acanthocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Macrocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Picripleuroxus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Arctodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Pseudochydorus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Scapholeberis,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Alonella,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Diacyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Eurycercus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Leptodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Skistodiaptomus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Paracyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Ergasilus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Tropocyclops,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Anchistropus,0 +2015,Oct,2015-10-28,Upstream,C,NF,After,RD22,Acartia,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Sinocalanus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Pseudodiaptomus,25.866840920448162 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,NA,320.6667104582542 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Bosmina,13.5492976249967 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Diaphanosoma,41.8796472045352 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Alona,1.23175432954515 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Chydorus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Ceriodaphnia,39.4161385454449 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Daphnia,6.15877164772576 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Diaptomus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Ilyocryptus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Macrothrix,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Limnoithona,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Camptocercus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Acartiella,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Eurytemora,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Monospilus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Microcyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Eucyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Pleuroxus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Osphranticum,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Sida,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Disparalona,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Mesocyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Graptoleberis,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Kurzia,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Simocephalus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Moina,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Leydigia,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Acanthocyclops,1.23175432954515 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Macrocyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Picripleuroxus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Arctodiaptomus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Pseudochydorus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Scapholeberis,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Alonella,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Diacyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Eurycercus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Leptodiaptomus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Skistodiaptomus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Paracyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Ergasilus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Tropocyclops,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Anchistropus,0 +2015,Nov,2015-11-10,Upstream,C,NF,After,STTD,Acartia,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Sinocalanus,384.355665869728 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Pseudodiaptomus,384.355665869728 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,NA,15198.52118753442 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Bosmina,2229.26286204442 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Diaphanosoma,76.8711331739456 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Alona,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Chydorus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Ceriodaphnia,2459.87626156626 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Daphnia,307.484532695782 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Diaptomus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Ilyocryptus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Macrothrix,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Limnoithona,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Camptocercus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Acartiella,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Eurytemora,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Monospilus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Microcyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Eucyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Pleuroxus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Osphranticum,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Sida,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Disparalona,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Mesocyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Graptoleberis,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Kurzia,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Simocephalus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Moina,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Leydigia,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Acanthocyclops,76.8711331739456 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Macrocyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Picripleuroxus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Arctodiaptomus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Pseudochydorus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Scapholeberis,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Alonella,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Diacyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Eurycercus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Leptodiaptomus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Skistodiaptomus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Paracyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Ergasilus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Tropocyclops,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Anchistropus,0 +2016,Jun,2016-06-01,Upstream,BN,MA-SR,Before,STTD,Acartia,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Sinocalanus,73.4587745584758 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Pseudodiaptomus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,NA,24021.019280621575 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Bosmina,1395.71671661104 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Diaphanosoma,514.211421909331 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Alona,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Chydorus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Ceriodaphnia,2607.78649682589 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Daphnia,330.564485513141 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Diaptomus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Ilyocryptus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Macrothrix,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Limnoithona,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Camptocercus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Acartiella,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Eurytemora,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Monospilus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Microcyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Eucyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Pleuroxus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Osphranticum,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Sida,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Disparalona,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Mesocyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Graptoleberis,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Kurzia,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Simocephalus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Moina,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Leydigia,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Acanthocyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Macrocyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Picripleuroxus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Arctodiaptomus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Pseudochydorus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Scapholeberis,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Alonella,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Diacyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Eurycercus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Leptodiaptomus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Skistodiaptomus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Paracyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Ergasilus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Tropocyclops,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Anchistropus,0 +2016,Jun,2016-06-14,Upstream,BN,MA-SR,Before,STTD,Acartia,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Sinocalanus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Pseudodiaptomus,286.72949520503 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,NA,5121.42990666216 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Bosmina,19841.6810681881 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Diaphanosoma,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Alona,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Chydorus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Ceriodaphnia,1146.91798082012 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Daphnia,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Diaptomus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Ilyocryptus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Macrothrix,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Limnoithona,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Camptocercus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Acartiella,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Eurytemora,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Monospilus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Microcyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Eucyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Pleuroxus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Osphranticum,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Sida,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Disparalona,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Mesocyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Graptoleberis,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Kurzia,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Simocephalus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Moina,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Leydigia,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Acanthocyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Macrocyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Picripleuroxus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Arctodiaptomus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Pseudochydorus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Scapholeberis,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Alonella,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Diacyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Eurycercus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Leptodiaptomus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Skistodiaptomus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Paracyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Ergasilus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Tropocyclops,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Anchistropus,0 +2016,Jun,2016-06-30,Upstream,BN,MA-SR,Before,STTD,Acartia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Sinocalanus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Pseudodiaptomus,436.536929899805 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,NA,21972.358804956843 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Bosmina,4988.9934845692 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Diaphanosoma,1746.14771959922 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Alona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Chydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Ceriodaphnia,1122.52353402807 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Daphnia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Diaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Ilyocryptus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Macrothrix,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Limnoithona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Camptocercus,124.72483711423 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Acartiella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Eurytemora,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Monospilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Microcyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Eucyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Pleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Osphranticum,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Sida,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Disparalona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Mesocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Graptoleberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Kurzia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Simocephalus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Moina,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Leydigia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Acanthocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Macrocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Picripleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Arctodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Pseudochydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Scapholeberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Alonella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Diacyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Eurycercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Leptodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Skistodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Paracyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Ergasilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Tropocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Anchistropus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,BL5,Acartia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Sinocalanus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Pseudodiaptomus,201.322396030471 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,NA,4112.728947479627 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Bosmina,393.058011297587 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Diaphanosoma,47.9339038167789 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Alona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Chydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Ceriodaphnia,191.735615267116 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Daphnia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Diaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Ilyocryptus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Macrothrix,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Limnoithona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Camptocercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Acartiella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Eurytemora,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Monospilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Microcyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Eucyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Pleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Osphranticum,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Sida,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Disparalona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Mesocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Graptoleberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Kurzia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Simocephalus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Moina,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Leydigia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Acanthocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Macrocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Picripleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Arctodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Pseudochydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Scapholeberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Alonella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Diacyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Eurycercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Leptodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Skistodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Paracyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Ergasilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Tropocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Anchistropus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,LIB,Acartia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Sinocalanus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Pseudodiaptomus,2491.026655401454 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,NA,13151.15543072238 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Bosmina,476.225684120866 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Diaphanosoma,36.6327449323743 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Alona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Chydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Ceriodaphnia,183.163724661871 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Daphnia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Diaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Ilyocryptus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Macrothrix,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Limnoithona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Camptocercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Acartiella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Eurytemora,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Monospilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Microcyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Eucyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Pleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Osphranticum,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Sida,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Disparalona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Mesocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Graptoleberis,36.6327449323743 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Kurzia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Simocephalus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Moina,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Leydigia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Acanthocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Macrocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Picripleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Arctodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Pseudochydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Scapholeberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Alonella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Diacyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Eurycercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Leptodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Skistodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Paracyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Ergasilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Tropocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Anchistropus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RVB,Acartia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Sinocalanus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Pseudodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,NA,5854.307530169303 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Bosmina,216.826204821085 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Diaphanosoma,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Alona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Chydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Ceriodaphnia,66.7157553295647 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Daphnia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Diaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Ilyocryptus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Macrothrix,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Limnoithona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Camptocercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Acartiella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Eurytemora,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Monospilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Microcyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Eucyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Pleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Osphranticum,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Sida,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Disparalona,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Mesocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Graptoleberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Kurzia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Simocephalus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Moina,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Leydigia,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Acanthocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Macrocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Picripleuroxus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Arctodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Pseudochydorus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Scapholeberis,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Alonella,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Diacyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Eurycercus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Leptodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Skistodiaptomus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Paracyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Ergasilus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Tropocyclops,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Anchistropus,0 +2016,Jun,2016-06-30,Downstream,BN,MA-SR,Before,RYI,Acartia,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Sinocalanus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Pseudodiaptomus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,NA,87041.93127520732 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Bosmina,16615.5624624185 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Diaphanosoma,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Alona,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Chydorus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Ceriodaphnia,421.714783310113 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Daphnia,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Diaptomus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Ilyocryptus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Macrothrix,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Limnoithona,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Camptocercus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Acartiella,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Eurytemora,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Monospilus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Microcyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Eucyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Pleuroxus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Osphranticum,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Sida,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Disparalona,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Mesocyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Graptoleberis,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Kurzia,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Simocephalus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Moina,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Leydigia,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Acanthocyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Macrocyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Picripleuroxus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Arctodiaptomus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Pseudochydorus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Scapholeberis,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Alonella,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Diacyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Eurycercus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Leptodiaptomus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Skistodiaptomus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Paracyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Ergasilus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Tropocyclops,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Anchistropus,0 +2016,Jul,2016-07-07,Upstream,BN,MA-SR,Before,STTD,Acartia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Sinocalanus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Pseudodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,NA,94769.3910848884 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Bosmina,18303.1012824892 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Diaphanosoma,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Alona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Chydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Ceriodaphnia,1220.20675216594 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Daphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Diaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Ilyocryptus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Macrothrix,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Limnoithona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Camptocercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Acartiella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Eurytemora,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Monospilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Microcyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Eucyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Pleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Osphranticum,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Sida,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Disparalona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Mesocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Graptoleberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Kurzia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Simocephalus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Moina,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Leydigia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Acanthocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Macrocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Picripleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Arctodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Pseudochydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Scapholeberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Alonella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Diacyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Eurycercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Leptodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Skistodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Paracyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Ergasilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Tropocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Anchistropus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,BL5,Acartia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Sinocalanus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Pseudodiaptomus,119.985677935226 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,NA,7409.115612500239 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Bosmina,1559.81381315794 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Diaphanosoma,59.9928389676132 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Alona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Chydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Ceriodaphnia,134.98388767713 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Daphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Diaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Ilyocryptus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Macrothrix,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Limnoithona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Camptocercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Acartiella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Eurytemora,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Monospilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Microcyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Eucyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Pleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Osphranticum,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Sida,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Disparalona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Mesocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Graptoleberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Kurzia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Simocephalus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Moina,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Leydigia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Acanthocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Macrocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Picripleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Arctodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Pseudochydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Scapholeberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Alonella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Diacyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Eurycercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Leptodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Skistodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Paracyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Ergasilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Tropocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Anchistropus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,LIB,Acartia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Sinocalanus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Pseudodiaptomus,111066.711894359 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,NA,726561.4069755959 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Bosmina,142800.05814989 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Diaphanosoma,3966.66828194138 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Alona,3966.66828194138 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Chydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Ceriodaphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Daphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Diaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Ilyocryptus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Macrothrix,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Limnoithona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Camptocercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Acartiella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Eurytemora,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Monospilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Microcyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Eucyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Pleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Osphranticum,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Sida,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Disparalona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Mesocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Graptoleberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Kurzia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Simocephalus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Moina,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Leydigia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Acanthocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Macrocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Picripleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Arctodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Pseudochydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Scapholeberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Alonella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Diacyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Eurycercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Leptodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Skistodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Paracyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Ergasilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Tropocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Anchistropus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RVB,Acartia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Sinocalanus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Pseudodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,NA,66420.83160813974 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Bosmina,5581.58248807897 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Diaphanosoma,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Alona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Chydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Ceriodaphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Daphnia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Diaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Ilyocryptus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Macrothrix,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Limnoithona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Camptocercus,186.052749602632 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Acartiella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Eurytemora,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Monospilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Microcyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Eucyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Pleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Osphranticum,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Sida,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Disparalona,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Mesocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Graptoleberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Kurzia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Simocephalus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Moina,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Leydigia,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Acanthocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Macrocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Picripleuroxus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Arctodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Pseudochydorus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Scapholeberis,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Alonella,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Diacyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Eurycercus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Leptodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Skistodiaptomus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Paracyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Ergasilus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Tropocyclops,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Anchistropus,0 +2016,Jul,2016-07-07,Downstream,BN,MA-SR,Before,RYI,Acartia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Sinocalanus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Pseudodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,NA,12383.245502329128 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Bosmina,1256.94597204093 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Diaphanosoma,4655.35545200343 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Alona,139.660663560103 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Chydorus,46.5535545200343 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Ceriodaphnia,93.1071090400687 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Daphnia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Diaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Ilyocryptus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Macrothrix,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Limnoithona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Camptocercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Acartiella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Eurytemora,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Monospilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Microcyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Eucyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Pleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Osphranticum,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Sida,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Disparalona,139.660663560103 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Mesocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Graptoleberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Kurzia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Simocephalus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Moina,1117.28530848082 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Leydigia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Acanthocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Macrocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Picripleuroxus,139.660663560103 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Arctodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Pseudochydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Scapholeberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Alonella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Diacyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Eurycercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Leptodiaptomus,46.5535545200343 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Skistodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Paracyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Ergasilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Tropocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Anchistropus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,I80,Acartia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Sinocalanus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Pseudodiaptomus,1026.43374745123 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,NA,80369.76242543115 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Bosmina,26892.5641832222 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Diaphanosoma,1231.72049694147 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Alona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Chydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Ceriodaphnia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Daphnia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Diaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Ilyocryptus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Macrothrix,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Limnoithona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Camptocercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Acartiella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Eurytemora,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Monospilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Microcyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Eucyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Pleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Osphranticum,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Sida,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Disparalona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Mesocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Graptoleberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Kurzia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Simocephalus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Moina,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Leydigia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Acanthocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Macrocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Picripleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Arctodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Pseudochydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Scapholeberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Alonella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Diacyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Eurycercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Leptodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Skistodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Paracyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Ergasilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Tropocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Anchistropus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,LIS,Acartia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Sinocalanus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Pseudodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,NA,28571.843270948833 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Bosmina,622.932629453827 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Diaphanosoma,747.519155344592 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Alona,124.586525890765 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Chydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Ceriodaphnia,1121.27873301689 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Daphnia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Diaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Ilyocryptus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Macrothrix,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Limnoithona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Camptocercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Acartiella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Eurytemora,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Monospilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Microcyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Eucyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Pleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Osphranticum,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Sida,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Disparalona,124.586525890765 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Mesocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Graptoleberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Kurzia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Simocephalus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Moina,6104.73976864751 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Leydigia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Acanthocyclops,124.586525890765 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Macrocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Picripleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Arctodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Pseudochydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Scapholeberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Alonella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Diacyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Eurycercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Leptodiaptomus,249.173051781531 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Skistodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Paracyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Ergasilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Tropocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Anchistropus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RCS,Acartia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Sinocalanus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Pseudodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,NA,54796.54318130379 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Bosmina,24535.7656035689 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Diaphanosoma,7974.12382115988 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Alona,306.697070044611 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Chydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Ceriodaphnia,4907.15312071377 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Daphnia,306.697070044611 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Diaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Ilyocryptus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Macrothrix,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Limnoithona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Camptocercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Acartiella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Eurytemora,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Monospilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Microcyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Eucyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Pleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Osphranticum,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Sida,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Disparalona,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Mesocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Graptoleberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Kurzia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Simocephalus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Moina,25149.1597436581 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Leydigia,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Acanthocyclops,3066.97070044611 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Macrocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Picripleuroxus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Arctodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Pseudochydorus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Scapholeberis,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Alonella,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Diacyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Eurycercus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Leptodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Skistodiaptomus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Paracyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Ergasilus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Tropocyclops,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Anchistropus,0 +2016,Jul,2016-07-08,Upstream,BN,MA-SR,Before,RD22,Acartia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Sinocalanus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Pseudodiaptomus,42.9620286018236 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,NA,80854.53782863214 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Bosmina,902.202600638297 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Diaphanosoma,429.620286018237 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Alona,85.9240572036473 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Chydorus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Ceriodaphnia,494.063328920972 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Daphnia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Diaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Ilyocryptus,150.367100106383 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Macrothrix,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Limnoithona,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Camptocercus,21.4810143009118 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Acartiella,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Eurytemora,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Monospilus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Microcyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Eucyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Pleuroxus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Osphranticum,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Sida,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Disparalona,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Mesocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Graptoleberis,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Kurzia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Simocephalus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Moina,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Leydigia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Acanthocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Macrocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Picripleuroxus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Arctodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Pseudochydorus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Scapholeberis,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Alonella,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Diacyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Eurycercus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Leptodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Skistodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Paracyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Ergasilus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Tropocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Anchistropus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,LIS,Acartia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Sinocalanus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Pseudodiaptomus,115.712371640075 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,NA,108422.49222674996 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Bosmina,6827.02992676441 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Diaphanosoma,1504.26083132097 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Alona,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Chydorus,115.712371640075 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Ceriodaphnia,462.849486560299 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Daphnia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Diaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Ilyocryptus,115.712371640075 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Macrothrix,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Limnoithona,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Camptocercus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Acartiella,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Eurytemora,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Monospilus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Microcyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Eucyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Pleuroxus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Osphranticum,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Sida,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Disparalona,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Mesocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Graptoleberis,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Kurzia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Simocephalus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Moina,2777.09691936179 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Leydigia,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Acanthocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Macrocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Picripleuroxus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Arctodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Pseudochydorus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Scapholeberis,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Alonella,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Diacyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Eurycercus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Leptodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Skistodiaptomus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Paracyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Ergasilus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Tropocyclops,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Anchistropus,0 +2016,Jul,2016-07-19,Upstream,BN,MA-SR,During,STTD,Acartia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Sinocalanus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Pseudodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,NA,4756.9040546372025 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Bosmina,311.928134730309 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Diaphanosoma,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Alona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Chydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Ceriodaphnia,38.9910168412886 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Daphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Diaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Ilyocryptus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Macrothrix,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Limnoithona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Camptocercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Acartiella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Eurytemora,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Monospilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Microcyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Eucyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Pleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Osphranticum,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Sida,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Disparalona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Mesocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Graptoleberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Kurzia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Simocephalus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Moina,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Leydigia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Acanthocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Macrocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Picripleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Arctodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Pseudochydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Scapholeberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Alonella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Diacyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Eurycercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Leptodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Skistodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Paracyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Ergasilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Tropocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Anchistropus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,BL5,Acartia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Sinocalanus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Pseudodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,NA,42809.06981981934 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Bosmina,4073.87403901557 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Diaphanosoma,133.569640623461 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Alona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Chydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Ceriodaphnia,667.848203117307 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Daphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Diaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Ilyocryptus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Macrothrix,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Limnoithona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Camptocercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Acartiella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Eurytemora,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Monospilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Microcyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Eucyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Pleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Osphranticum,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Sida,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Disparalona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Mesocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Graptoleberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Kurzia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Simocephalus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Moina,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Leydigia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Acanthocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Macrocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Picripleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Arctodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Pseudochydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Scapholeberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Alonella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Diacyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Eurycercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Leptodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Skistodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Paracyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Ergasilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Tropocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Anchistropus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,LIB,Acartia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Sinocalanus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Pseudodiaptomus,109.488070111056 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,NA,45568.93478022155 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Bosmina,700.723648710759 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Diaphanosoma,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Alona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Chydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Ceriodaphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Daphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Diaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Ilyocryptus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Macrothrix,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Limnoithona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Camptocercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Acartiella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Eurytemora,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Monospilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Microcyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Eucyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Pleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Osphranticum,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Sida,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Disparalona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Mesocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Graptoleberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Kurzia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Simocephalus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Moina,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Leydigia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Acanthocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Macrocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Picripleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Arctodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Pseudochydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Scapholeberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Alonella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Diacyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Eurycercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Leptodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Skistodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Paracyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Ergasilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Tropocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Anchistropus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RVB,Acartia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Sinocalanus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Pseudodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,NA,132881.07732053555 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Bosmina,4320.12471109365 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Diaphanosoma,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Alona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Chydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Ceriodaphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Daphnia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Diaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Ilyocryptus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Macrothrix,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Limnoithona,148.969817623919 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Camptocercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Acartiella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Eurytemora,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Monospilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Microcyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Eucyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Pleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Osphranticum,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Sida,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Disparalona,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Mesocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Graptoleberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Kurzia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Simocephalus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Moina,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Leydigia,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Acanthocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Macrocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Picripleuroxus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Arctodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Pseudochydorus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Scapholeberis,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Alonella,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Diacyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Eurycercus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Leptodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Skistodiaptomus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Paracyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Ergasilus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Tropocyclops,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Anchistropus,0 +2016,Jul,2016-07-19,Downstream,BN,MA-SR,During,RYI,Acartia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Sinocalanus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Pseudodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,NA,18608.72737487029 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Bosmina,159.731565449531 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Diaphanosoma,199.664456811913 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Alona,718.792044522887 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Chydorus,79.8657827247653 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Ceriodaphnia,239.597348174296 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Daphnia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Diaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Ilyocryptus,159.731565449531 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Macrothrix,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Limnoithona,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Camptocercus,39.9328913623826 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Acartiella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Eurytemora,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Monospilus,39.9328913623826 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Microcyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Eucyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Pleuroxus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Osphranticum,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Sida,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Disparalona,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Mesocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Graptoleberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Kurzia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Simocephalus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Moina,39.9328913623826 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Leydigia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Acanthocyclops,359.396022261444 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Macrocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Picripleuroxus,199.664456811913 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Arctodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Pseudochydorus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Scapholeberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Alonella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Diacyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Eurycercus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Leptodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Skistodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Paracyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Ergasilus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Tropocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Anchistropus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,I80,Acartia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Sinocalanus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Pseudodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,NA,883.4941922432007 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Bosmina,47.717362265181 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Diaphanosoma,119.293405662953 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Alona,278.351279880223 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Chydorus,143.152086795543 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Ceriodaphnia,318.11574843454 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Daphnia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Diaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Ilyocryptus,119.293405662953 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Macrothrix,79.5289371086351 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Limnoithona,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Camptocercus,15.905787421727 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Acartiella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Eurytemora,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Monospilus,39.7644685543175 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Microcyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Eucyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Pleuroxus,23.8586811325905 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Osphranticum,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Sida,39.7644685543175 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Disparalona,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Mesocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Graptoleberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Kurzia,87.4818308194986 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Simocephalus,31.811574843454 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Moina,39.7644685543175 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Leydigia,15.905787421727 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Acanthocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Macrocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Picripleuroxus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Arctodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Pseudochydorus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Scapholeberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Alonella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Diacyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Eurycercus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Leptodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Skistodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Paracyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Ergasilus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Tropocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Anchistropus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RCS,Acartia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Sinocalanus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Pseudodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,NA,1656.346040791421 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Bosmina,95.0362482421304 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Diaphanosoma,20.3649103375994 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Alona,285.108744726391 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Chydorus,176.495889592528 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Ceriodaphnia,217.225710267727 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Daphnia,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Diaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Ilyocryptus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Macrothrix,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Limnoithona,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Camptocercus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Acartiella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Eurytemora,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Monospilus,54.3064275669317 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Microcyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Eucyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Pleuroxus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Osphranticum,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Sida,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Disparalona,95.0362482421304 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Mesocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Graptoleberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Kurzia,20.3649103375994 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Simocephalus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Moina,88.247944796264 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Leydigia,88.247944796264 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Acanthocyclops,33.9415172293323 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Macrocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Picripleuroxus,6.78830344586646 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Arctodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Pseudochydorus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Scapholeberis,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Alonella,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Diacyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Eurycercus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Leptodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Skistodiaptomus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Paracyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Ergasilus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Tropocyclops,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Anchistropus,0 +2016,Jul,2016-07-20,Upstream,BN,MA-SR,During,RD22,Acartia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Sinocalanus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Pseudodiaptomus,81.8358889435086 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,NA,8756.440116955422 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Bosmina,245.507666830526 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Diaphanosoma,184.130750122894 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Alona,450.097389189297 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Chydorus,40.9179444717543 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Ceriodaphnia,450.097389189297 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Daphnia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Diaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Ilyocryptus,327.343555774034 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Macrothrix,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Limnoithona,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Camptocercus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Acartiella,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Eurytemora,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Monospilus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Microcyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Eucyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Pleuroxus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Osphranticum,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Sida,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Disparalona,511.474305896929 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Mesocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Graptoleberis,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Kurzia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Simocephalus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Moina,409.179444717543 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Leydigia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Acanthocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Macrocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Picripleuroxus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Arctodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Pseudochydorus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Scapholeberis,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Alonella,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Diacyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Eurycercus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Leptodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Skistodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Paracyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Ergasilus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Tropocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Anchistropus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,LIS,Acartia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Sinocalanus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Pseudodiaptomus,638.959206527817 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,NA,30297.315709527327 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Bosmina,638.959206527817 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Diaphanosoma,191.687761958345 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Alona,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Chydorus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Ceriodaphnia,319.479603263909 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Daphnia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Diaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Ilyocryptus,191.687761958345 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Macrothrix,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Limnoithona,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Camptocercus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Acartiella,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Eurytemora,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Monospilus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Microcyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Eucyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Pleuroxus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Osphranticum,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Sida,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Disparalona,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Mesocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Graptoleberis,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Kurzia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Simocephalus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Moina,63.8959206527817 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Leydigia,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Acanthocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Macrocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Picripleuroxus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Arctodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Pseudochydorus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Scapholeberis,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Alonella,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Diacyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Eurycercus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Leptodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Skistodiaptomus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Paracyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Ergasilus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Tropocyclops,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Anchistropus,0 +2016,Aug,2016-08-02,Upstream,BN,MA-SR,After,STTD,Acartia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Sinocalanus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Pseudodiaptomus,51.7760666402182 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,NA,8672.491162236542 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Bosmina,25.8880333201091 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Diaphanosoma,207.104266560873 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Alona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Chydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Ceriodaphnia,25.8880333201091 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Daphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Diaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Ilyocryptus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Macrothrix,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Limnoithona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Camptocercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Acartiella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Eurytemora,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Monospilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Microcyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Eucyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Pleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Osphranticum,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Sida,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Disparalona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Mesocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Graptoleberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Kurzia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Simocephalus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Moina,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Leydigia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Acanthocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Macrocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Picripleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Arctodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Pseudochydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Scapholeberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Alonella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Diacyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Eurycercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Leptodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Skistodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Paracyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Ergasilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Tropocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Anchistropus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,BL5,Acartia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Sinocalanus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Pseudodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,NA,22164.13393728556 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Bosmina,119.162010415514 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Diaphanosoma,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Alona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Chydorus,59.5810052077569 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Ceriodaphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Daphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Diaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Ilyocryptus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Macrothrix,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Limnoithona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Camptocercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Acartiella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Eurytemora,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Monospilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Microcyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Eucyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Pleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Osphranticum,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Sida,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Disparalona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Mesocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Graptoleberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Kurzia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Simocephalus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Moina,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Leydigia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Acanthocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Macrocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Picripleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Arctodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Pseudochydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Scapholeberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Alonella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Diacyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Eurycercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Leptodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Skistodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Paracyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Ergasilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Tropocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Anchistropus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,LIB,Acartia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Sinocalanus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Pseudodiaptomus,283.871220925133 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,NA,37187.12994119239 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Bosmina,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Diaphanosoma,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Alona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Chydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Ceriodaphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Daphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Diaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Ilyocryptus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Macrothrix,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Limnoithona,141.935610462567 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Camptocercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Acartiella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Eurytemora,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Monospilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Microcyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Eucyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Pleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Osphranticum,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Sida,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Disparalona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Mesocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Graptoleberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Kurzia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Simocephalus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Moina,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Leydigia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Acanthocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Macrocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Picripleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Arctodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Pseudochydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Scapholeberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Alonella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Diacyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Eurycercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Leptodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Skistodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Paracyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Ergasilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Tropocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Anchistropus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RVB,Acartia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Sinocalanus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Pseudodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,NA,67405.88631419267 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Bosmina,204.881113416999 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Diaphanosoma,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Alona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Chydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Ceriodaphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Daphnia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Diaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Ilyocryptus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Macrothrix,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Limnoithona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Camptocercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Acartiella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Eurytemora,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Monospilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Microcyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Eucyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Pleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Osphranticum,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Sida,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Disparalona,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Mesocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Graptoleberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Kurzia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Simocephalus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Moina,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Leydigia,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Acanthocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Macrocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Picripleuroxus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Arctodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Pseudochydorus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Scapholeberis,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Alonella,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Diacyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Eurycercus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Leptodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Skistodiaptomus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Paracyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Ergasilus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Tropocyclops,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Anchistropus,0 +2016,Aug,2016-08-02,Downstream,BN,MA-SR,After,RYI,Acartia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Sinocalanus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Pseudodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,NA,123.47857929520539 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Bosmina,6.61492389081458 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Diaphanosoma,1.46998308684768 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Alona,41.1595264317351 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Chydorus,1.46998308684768 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Ceriodaphnia,3.67495771711921 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Daphnia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Diaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Ilyocryptus,7.34991543423842 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Macrothrix,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Limnoithona,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Camptocercus,0.734991543423842 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Acartiella,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Eurytemora,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Monospilus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Microcyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Eucyclops,4.40994926054305 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Pleuroxus,2.20497463027153 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Osphranticum,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Sida,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Disparalona,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Mesocyclops,0.734991543423842 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Graptoleberis,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Kurzia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Simocephalus,0.734991543423842 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Moina,3.67495771711921 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Leydigia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Acanthocyclops,19.1097801290199 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Macrocyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Picripleuroxus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Arctodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Pseudochydorus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Scapholeberis,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Alonella,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Diacyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Eurycercus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Leptodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Skistodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Paracyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Ergasilus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Tropocyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Anchistropus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,I80,Acartia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Sinocalanus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Pseudodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,NA,80.48959519357099 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Bosmina,10.3932045443635 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Diaphanosoma,5.19660227218177 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Alona,138.229620440035 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Chydorus,21.8257295431634 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Ceriodaphnia,6.23592272661812 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Daphnia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Diaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Ilyocryptus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Macrothrix,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Limnoithona,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Camptocercus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Acartiella,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Eurytemora,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Monospilus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Microcyclops,4.15728181774541 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Eucyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Pleuroxus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Osphranticum,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Sida,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Disparalona,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Mesocyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Graptoleberis,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Kurzia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Simocephalus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Moina,61.3199068117449 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Leydigia,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Acanthocyclops,1.03932045443635 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Macrocyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Picripleuroxus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Arctodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Pseudochydorus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Scapholeberis,1.03932045443635 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Alonella,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Diacyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Eurycercus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Leptodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Skistodiaptomus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Paracyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Ergasilus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Tropocyclops,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Anchistropus,0 +2016,Aug,2016-08-03,Upstream,BN,MA-SR,After,RD22,Acartia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Sinocalanus,486.696074240413 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Pseudodiaptomus,121.674018560103 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,NA,47513.7042477203 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Bosmina,29080.0904358647 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Diaphanosoma,608.370092800516 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Alona,121.674018560103 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Chydorus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Ceriodaphnia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Daphnia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Diaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Ilyocryptus,243.348037120206 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Macrothrix,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Limnoithona,121.674018560103 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Camptocercus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Acartiella,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Eurytemora,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Monospilus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Microcyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Eucyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Pleuroxus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Osphranticum,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Sida,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Disparalona,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Mesocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Graptoleberis,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Kurzia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Simocephalus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Moina,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Leydigia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Acanthocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Macrocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Picripleuroxus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Arctodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Pseudochydorus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Scapholeberis,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Alonella,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Diacyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Eurycercus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Leptodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Skistodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Paracyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Ergasilus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Tropocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Anchistropus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,LIS,Acartia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Sinocalanus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Pseudodiaptomus,100.253404921146 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,NA,56192.03345830215 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Bosmina,2055.19480088349 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Diaphanosoma,401.013619684583 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Alona,150.380107381719 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Chydorus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Ceriodaphnia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Daphnia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Diaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Ilyocryptus,150.380107381719 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Macrothrix,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Limnoithona,50.1267024605729 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Camptocercus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Acartiella,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Eurytemora,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Monospilus,50.1267024605729 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Microcyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Eucyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Pleuroxus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Osphranticum,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Sida,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Disparalona,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Mesocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Graptoleberis,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Kurzia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Simocephalus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Moina,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Leydigia,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Acanthocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Macrocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Picripleuroxus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Arctodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Pseudochydorus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Scapholeberis,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Alonella,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Diacyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Eurycercus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Leptodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Skistodiaptomus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Paracyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Ergasilus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Tropocyclops,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Anchistropus,0 +2016,Aug,2016-08-16,Upstream,BN,MA-SR,After,STTD,Acartia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Sinocalanus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Pseudodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,NA,27163.782897940666 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Bosmina,426.098555261815 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Diaphanosoma,159.78695822318 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Alona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Chydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Ceriodaphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Daphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Diaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Ilyocryptus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Macrothrix,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Limnoithona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Camptocercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Acartiella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Eurytemora,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Monospilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Microcyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Eucyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Pleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Osphranticum,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Sida,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Disparalona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Mesocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Graptoleberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Kurzia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Simocephalus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Moina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Leydigia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Acanthocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Macrocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Picripleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Arctodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Pseudochydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Scapholeberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Alonella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Diacyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Eurycercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Leptodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Skistodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Paracyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Ergasilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Tropocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Anchistropus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,BL5,Acartia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Sinocalanus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Pseudodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,NA,60778.61127941131 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Bosmina,559.312373736914 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Diaphanosoma,186.437457912304 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Alona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Chydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Ceriodaphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Daphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Diaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Ilyocryptus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Macrothrix,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Limnoithona,559.312373736914 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Camptocercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Acartiella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Eurytemora,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Monospilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Microcyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Eucyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Pleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Osphranticum,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Sida,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Disparalona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Mesocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Graptoleberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Kurzia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Simocephalus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Moina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Leydigia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Acanthocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Macrocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Picripleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Arctodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Pseudochydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Scapholeberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Alonella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Diacyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Eurycercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Leptodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Skistodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Paracyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Ergasilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Tropocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Anchistropus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,LIB,Acartia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Sinocalanus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Pseudodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,NA,12107.328397234338 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Bosmina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Diaphanosoma,127.445562076151 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Alona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Chydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Ceriodaphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Daphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Diaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Ilyocryptus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Macrothrix,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Limnoithona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Camptocercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Acartiella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Eurytemora,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Monospilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Microcyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Eucyclops,127.445562076151 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Pleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Osphranticum,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Sida,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Disparalona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Mesocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Graptoleberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Kurzia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Simocephalus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Moina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Leydigia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Acanthocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Macrocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Picripleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Arctodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Pseudochydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Scapholeberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Alonella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Diacyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Eurycercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Leptodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Skistodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Paracyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Ergasilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Tropocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Anchistropus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RVB,Acartia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Sinocalanus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Pseudodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,NA,46373.533762222876 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Bosmina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Diaphanosoma,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Alona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Chydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Ceriodaphnia,558.71727424365 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Daphnia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Diaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Ilyocryptus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Macrothrix,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Limnoithona,558.71727424365 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Camptocercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Acartiella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Eurytemora,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Monospilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Microcyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Eucyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Pleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Osphranticum,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Sida,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Disparalona,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Mesocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Graptoleberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Kurzia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Simocephalus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Moina,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Leydigia,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Acanthocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Macrocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Picripleuroxus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Arctodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Pseudochydorus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Scapholeberis,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Alonella,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Diacyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Eurycercus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Leptodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Skistodiaptomus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Paracyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Ergasilus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Tropocyclops,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Anchistropus,0 +2016,Aug,2016-08-16,Downstream,BN,MA-SR,After,RYI,Acartia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Sinocalanus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Pseudodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,NA,8621.37861000442 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Bosmina,151.252256315867 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Diaphanosoma,170.15878835535 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Alona,170.15878835535 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Chydorus,18.906532039483402 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Ceriodaphnia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Daphnia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Diaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Ilyocryptus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Macrothrix,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Limnoithona,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Camptocercus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Acartiella,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Eurytemora,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Monospilus,18.906532039483402 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Microcyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Eucyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Pleuroxus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Osphranticum,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Sida,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Disparalona,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Mesocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Graptoleberis,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Kurzia,37.813064078966804 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Simocephalus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Moina,1115.48539032952 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Leydigia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Acanthocyclops,132.345724276384 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Macrocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Picripleuroxus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Arctodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Pseudochydorus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Scapholeberis,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Alonella,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Diacyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Eurycercus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Leptodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Skistodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Paracyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Ergasilus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Tropocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Anchistropus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,I80,Acartia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Sinocalanus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Pseudodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,NA,94.42257670020852 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Bosmina,96.0561852936377 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Diaphanosoma,141.143782472284 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Alona,40.1867713983586 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Chydorus,8.82148640451775 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Ceriodaphnia,11.7619818726903 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Daphnia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Diaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Ilyocryptus,0.980165156057528 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Macrothrix,0.980165156057528 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Limnoithona,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Camptocercus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Acartiella,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Eurytemora,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Monospilus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Microcyclops,4.90082578028764 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Eucyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Pleuroxus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Osphranticum,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Sida,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Disparalona,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Mesocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Graptoleberis,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Kurzia,2.94049546817258 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Simocephalus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Moina,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Leydigia,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Acanthocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Macrocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Picripleuroxus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Arctodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Pseudochydorus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Scapholeberis,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Alonella,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Diacyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Eurycercus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Leptodiaptomus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Skistodiaptomus,0.980165156057528 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Paracyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Ergasilus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Tropocyclops,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Anchistropus,0 +2016,Aug,2016-08-17,Upstream,BN,MA-SR,After,RD22,Acartia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Sinocalanus,180.037280400845 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Pseudodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,NA,12197.525747157215 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Bosmina,31686.5613505486 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Diaphanosoma,900.186402004223 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Alona,180.037280400845 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Chydorus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Ceriodaphnia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Daphnia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Diaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Ilyocryptus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Macrothrix,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Limnoithona,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Camptocercus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Acartiella,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Eurytemora,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Monospilus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Microcyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Eucyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Pleuroxus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Osphranticum,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Sida,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Disparalona,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Mesocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Graptoleberis,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Kurzia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Simocephalus,180.037280400845 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Moina,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Leydigia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Acanthocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Macrocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Picripleuroxus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Arctodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Pseudochydorus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Scapholeberis,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Alonella,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Diacyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Eurycercus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Leptodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Skistodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Paracyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Ergasilus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Tropocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Anchistropus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,LIS,Acartia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Sinocalanus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Pseudodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,NA,73076.40276865948 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Bosmina,3189.58290111339 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Diaphanosoma,109.23229113402 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Alona,284.003956948452 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Chydorus,21.846458226804 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Ceriodaphnia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Daphnia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Diaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Ilyocryptus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Macrothrix,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Limnoithona,43.6929164536081 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Camptocercus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Acartiella,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Eurytemora,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Monospilus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Microcyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Eucyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Pleuroxus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Osphranticum,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Sida,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Disparalona,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Mesocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Graptoleberis,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Kurzia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Simocephalus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Moina,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Leydigia,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Acanthocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Macrocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Picripleuroxus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Arctodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Pseudochydorus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Scapholeberis,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Alonella,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Diacyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Eurycercus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Leptodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Skistodiaptomus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Paracyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Ergasilus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Tropocyclops,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Anchistropus,0 +2016,Aug,2016-08-30,Upstream,BN,MA-SR,After,STTD,Acartia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Sinocalanus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Pseudodiaptomus,13.9609755864221 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,NA,14849.824365424281 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Bosmina,553.785364928075 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Diaphanosoma,32.5756097016515 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Alona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Chydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Ceriodaphnia,37.2292682304588 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Daphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Diaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Ilyocryptus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Macrothrix,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Limnoithona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Camptocercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Acartiella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Eurytemora,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Monospilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Microcyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Eucyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Pleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Osphranticum,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Sida,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Disparalona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Mesocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Graptoleberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Kurzia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Simocephalus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Moina,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Leydigia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Acanthocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Macrocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Picripleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Arctodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Pseudochydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Scapholeberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Alonella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Diacyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Eurycercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Leptodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Skistodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Paracyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Ergasilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Tropocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Anchistropus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,BL5,Acartia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Sinocalanus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Pseudodiaptomus,143.091026054498 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,NA,13259.76841438348 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Bosmina,324.339659056862 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Diaphanosoma,9.53940173696653 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Alona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Chydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Ceriodaphnia,47.6970086848327 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Daphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Diaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Ilyocryptus,9.53940173696653 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Macrothrix,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Limnoithona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Camptocercus,76.3152138957322 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Acartiella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Eurytemora,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Monospilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Microcyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Eucyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Pleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Osphranticum,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Sida,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Disparalona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Mesocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Graptoleberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Kurzia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Simocephalus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Moina,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Leydigia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Acanthocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Macrocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Picripleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Arctodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Pseudochydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Scapholeberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Alonella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Diacyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Eurycercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Leptodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Skistodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Paracyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Ergasilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Tropocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Anchistropus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,LIB,Acartia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Sinocalanus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Pseudodiaptomus,78.3422762048977 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,NA,2585.2951147616272 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Bosmina,147.467814032749 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Diaphanosoma,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Alona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Chydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Ceriodaphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Daphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Diaptomus,41.4753226967106 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Ilyocryptus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Macrothrix,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Limnoithona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Camptocercus,9.21673837704679 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Acartiella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Eurytemora,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Monospilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Microcyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Eucyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Pleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Osphranticum,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Sida,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Disparalona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Mesocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Graptoleberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Kurzia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Simocephalus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Moina,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Leydigia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Acanthocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Macrocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Picripleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Arctodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Pseudochydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Scapholeberis,4.60836918852339 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Alonella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Diacyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Eurycercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Leptodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Skistodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Paracyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Ergasilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Tropocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Anchistropus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RVB,Acartia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Sinocalanus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Pseudodiaptomus,66.1579576690405 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,NA,16095.285987196587 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Bosmina,538.714798162187 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Diaphanosoma,85.0602312887663 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Alona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Chydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Ceriodaphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Daphnia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Diaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Ilyocryptus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Macrothrix,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Limnoithona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Camptocercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Acartiella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Eurytemora,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Monospilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Microcyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Eucyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Pleuroxus,18.9022736197259 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Osphranticum,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Sida,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Disparalona,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Mesocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Graptoleberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Kurzia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Simocephalus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Moina,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Leydigia,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Acanthocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Macrocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Picripleuroxus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Arctodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Pseudochydorus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Scapholeberis,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Alonella,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Diacyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Eurycercus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Leptodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Skistodiaptomus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Paracyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Ergasilus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Tropocyclops,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Anchistropus,0 +2016,Aug,2016-08-30,Downstream,BN,MA-SR,After,RYI,Acartia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Sinocalanus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Pseudodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,NA,2266.529503286953 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Bosmina,255.172195734293 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Diaphanosoma,3092.0866071331898 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Alona,180.121549930089 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Chydorus,30.0202583216815 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Ceriodaphnia,105.070904125885 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Daphnia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Diaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Ilyocryptus,30.0202583216815 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Macrothrix,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Limnoithona,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Camptocercus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Acartiella,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Eurytemora,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Monospilus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Microcyclops,15.0101291608407 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Eucyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Pleuroxus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Osphranticum,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Sida,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Disparalona,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Mesocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Graptoleberis,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Kurzia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Simocephalus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Moina,120.081033286726 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Leydigia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Acanthocyclops,30.0202583216815 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Macrocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Picripleuroxus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Arctodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Pseudochydorus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Scapholeberis,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Alonella,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Diacyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Eurycercus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Leptodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Skistodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Paracyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Ergasilus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Tropocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Anchistropus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,I80,Acartia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Sinocalanus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Pseudodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,NA,191.98267469603675 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Bosmina,176.928854124518 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Diaphanosoma,78.0568474078755 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Alona,145.706115161368 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Chydorus,158.715589729347 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Ceriodaphnia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Daphnia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Diaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Ilyocryptus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Macrothrix,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Limnoithona,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Camptocercus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Acartiella,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Eurytemora,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Monospilus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Microcyclops,13.0094745679793 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Eucyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Pleuroxus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Osphranticum,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Sida,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Disparalona,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Mesocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Graptoleberis,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Kurzia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Simocephalus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Moina,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Leydigia,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Acanthocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Macrocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Picripleuroxus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Arctodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Pseudochydorus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Scapholeberis,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Alonella,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Diacyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Eurycercus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Leptodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Skistodiaptomus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Paracyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Ergasilus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Tropocyclops,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Anchistropus,0 +2016,Aug,2016-08-31,Upstream,BN,MA-SR,After,RD22,Acartia,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Sinocalanus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Pseudodiaptomus,1051.10745211913 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,NA,8231.48523440791 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Bosmina,4335.8182399914 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Diaphanosoma,591.247941817009 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Alona,722.6363733319 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Chydorus,854.02480484679 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Ceriodaphnia,459.859510302118 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Daphnia,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Diaptomus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Ilyocryptus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Macrothrix,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Limnoithona,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Camptocercus,131.388431514891 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Acartiella,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Eurytemora,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Monospilus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Microcyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Eucyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Pleuroxus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Osphranticum,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Sida,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Disparalona,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Mesocyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Graptoleberis,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Kurzia,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Simocephalus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Moina,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Leydigia,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Acanthocyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Macrocyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Picripleuroxus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Arctodiaptomus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Pseudochydorus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Scapholeberis,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Alonella,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Diacyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Eurycercus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Leptodiaptomus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Skistodiaptomus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Paracyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Ergasilus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Tropocyclops,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Anchistropus,0 +2016,Sep,2016-09-13,Upstream,BN,MA-SR,After,STTD,Acartia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Sinocalanus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Pseudodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,NA,23564.834445924855 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Bosmina,1071.12883845113 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Diaphanosoma,89.2607365375943 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Alona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Chydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Ceriodaphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Daphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Diaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Ilyocryptus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Macrothrix,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Limnoithona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Camptocercus,44.6303682687971 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Acartiella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Eurytemora,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Monospilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Microcyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Eucyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Pleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Osphranticum,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Sida,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Disparalona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Mesocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Graptoleberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Kurzia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Simocephalus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Moina,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Leydigia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Acanthocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Macrocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Picripleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Arctodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Pseudochydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Scapholeberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Alonella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Diacyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Eurycercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Leptodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Skistodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Paracyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Ergasilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Tropocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Anchistropus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,BL5,Acartia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Sinocalanus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Pseudodiaptomus,1187.38071146835 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,NA,17810.710672025263 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Bosmina,220.908039342949 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Diaphanosoma,27.6135049178686 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Alona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Chydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Ceriodaphnia,55.2270098357372 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Daphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Diaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Ilyocryptus,27.6135049178686 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Macrothrix,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Limnoithona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Camptocercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Acartiella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Eurytemora,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Monospilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Microcyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Eucyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Pleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Osphranticum,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Sida,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Disparalona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Mesocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Graptoleberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Kurzia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Simocephalus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Moina,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Leydigia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Acanthocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Macrocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Picripleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Arctodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Pseudochydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Scapholeberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Alonella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Diacyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Eurycercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Leptodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Skistodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Paracyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Ergasilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Tropocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Anchistropus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,LIB,Acartia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Sinocalanus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Pseudodiaptomus,193.110370726815 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,NA,4545.521034031192 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Bosmina,267.383590237129 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Diaphanosoma,44.5639317061881 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Alona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Chydorus,14.8546439020627 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Ceriodaphnia,44.5639317061881 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Daphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Diaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Ilyocryptus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Macrothrix,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Limnoithona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Camptocercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Acartiella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Eurytemora,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Monospilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Microcyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Eucyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Pleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Osphranticum,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Sida,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Disparalona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Mesocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Graptoleberis,14.8546439020627 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Kurzia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Simocephalus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Moina,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Leydigia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Acanthocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Macrocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Picripleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Arctodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Pseudochydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Scapholeberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Alonella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Diacyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Eurycercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Leptodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Skistodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Paracyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Ergasilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Tropocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Anchistropus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RVB,Acartia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Sinocalanus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Pseudodiaptomus,619.03530052426 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,NA,11248.10068285934 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Bosmina,137.563400116502 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Diaphanosoma,22.9272333527504 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Alona,22.9272333527504 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Chydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Ceriodaphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Daphnia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Diaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Ilyocryptus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Macrothrix,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Limnoithona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Camptocercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Acartiella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Eurytemora,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Monospilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Microcyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Eucyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Pleuroxus,22.9272333527504 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Osphranticum,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Sida,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Disparalona,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Mesocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Graptoleberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Kurzia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Simocephalus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Moina,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Leydigia,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Acanthocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Macrocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Picripleuroxus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Arctodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Pseudochydorus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Scapholeberis,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Alonella,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Diacyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Eurycercus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Leptodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Skistodiaptomus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Paracyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Ergasilus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Tropocyclops,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Anchistropus,0 +2016,Sep,2016-09-13,Downstream,BN,MA-SR,After,RYI,Acartia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Sinocalanus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Pseudodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,NA,966.2541890878326 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Bosmina,117.155531009495 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Diaphanosoma,123.013307559969 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Alona,228.453285468515 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Chydorus,99.5822013580705 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Ceriodaphnia,17.5733296514242 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Daphnia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Diaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Ilyocryptus,5.85777655047473 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Macrothrix,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Limnoithona,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Camptocercus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Acartiella,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Eurytemora,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Monospilus,5.85777655047473 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Microcyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Eucyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Pleuroxus,41.0044358533231 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Osphranticum,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Sida,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Disparalona,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Mesocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Graptoleberis,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Kurzia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Simocephalus,5.85777655047473 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Moina,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Leydigia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Acanthocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Macrocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Picripleuroxus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Arctodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Pseudochydorus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Scapholeberis,5.85777655047473 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Alonella,5.85777655047473 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Diacyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Eurycercus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Leptodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Skistodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Paracyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Ergasilus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Tropocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Anchistropus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,I80,Acartia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Sinocalanus,740.551094842048 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Pseudodiaptomus,123.425182473675 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,NA,32393.500163772576 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Bosmina,246.850364947349 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Diaphanosoma,740.551094842048 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Alona,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Chydorus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Ceriodaphnia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Daphnia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Diaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Ilyocryptus,123.425182473675 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Macrothrix,61.7125912368373 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Limnoithona,185.137773710512 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Camptocercus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Acartiella,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Eurytemora,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Monospilus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Microcyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Eucyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Pleuroxus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Osphranticum,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Sida,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Disparalona,123.425182473675 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Mesocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Graptoleberis,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Kurzia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Simocephalus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Moina,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Leydigia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Acanthocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Macrocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Picripleuroxus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Arctodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Pseudochydorus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Scapholeberis,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Alonella,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Diacyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Eurycercus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Leptodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Skistodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Paracyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Ergasilus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Tropocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Anchistropus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,LIS,Acartia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Sinocalanus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Pseudodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,NA,231.21596421156542 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Bosmina,106.497020293593 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Diaphanosoma,114.689098777716 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Alona,327.683139364902 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Chydorus,966.665261126462 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Ceriodaphnia,163.841569682451 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Daphnia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Diaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Ilyocryptus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Macrothrix,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Limnoithona,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Camptocercus,8.19207848412256 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Acartiella,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Eurytemora,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Monospilus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Microcyclops,49.1524709047354 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Eucyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Pleuroxus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Osphranticum,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Sida,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Disparalona,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Mesocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Graptoleberis,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Kurzia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Simocephalus,16.3841569682451 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Moina,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Leydigia,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Acanthocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Macrocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Picripleuroxus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Arctodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Pseudochydorus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Scapholeberis,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Alonella,8.19207848412256 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Diacyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Eurycercus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Leptodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Skistodiaptomus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Paracyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Ergasilus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Tropocyclops,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Anchistropus,0 +2016,Sep,2016-09-14,Upstream,BN,MA-SR,After,RD22,Acartia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Sinocalanus,237.168811938179 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Pseudodiaptomus,135.525035393245 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,NA,2420.5062772922643 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Bosmina,180.700047190994 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Diaphanosoma,338.812588483114 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Alona,11.2937529494371 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Chydorus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Ceriodaphnia,33.8812588483114 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Daphnia,45.1750117977485 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Diaptomus,22.5875058988742 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Ilyocryptus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Macrothrix,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Limnoithona,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Camptocercus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Acartiella,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Eurytemora,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Monospilus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Microcyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Eucyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Pleuroxus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Osphranticum,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Sida,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Disparalona,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Mesocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Graptoleberis,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Kurzia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Simocephalus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Moina,237.168811938179 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Leydigia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Acanthocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Macrocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Picripleuroxus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Arctodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Pseudochydorus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Scapholeberis,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Alonella,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Diacyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Eurycercus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Leptodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Skistodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Paracyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Ergasilus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Tropocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Anchistropus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,LIS,Acartia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Sinocalanus,3.75340012839016 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Pseudodiaptomus,3.75340012839016 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,NA,960.2546343869244 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Bosmina,7.50680025678032 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Diaphanosoma,3.75340012839016 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Alona,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Chydorus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Ceriodaphnia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Daphnia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Diaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Ilyocryptus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Macrothrix,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Limnoithona,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Camptocercus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Acartiella,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Eurytemora,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Monospilus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Microcyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Eucyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Pleuroxus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Osphranticum,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Sida,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Disparalona,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Mesocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Graptoleberis,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Kurzia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Simocephalus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Moina,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Leydigia,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Acanthocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Macrocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Picripleuroxus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Arctodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Pseudochydorus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Scapholeberis,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Alonella,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Diacyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Eurycercus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Leptodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Skistodiaptomus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Paracyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Ergasilus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Tropocyclops,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Anchistropus,0 +2017,Jul,2017-07-19,Upstream,W,CA,Before,STTD,Acartia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Sinocalanus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Pseudodiaptomus,34.0246088652605 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,NA,1232.1769067633645 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Bosmina,4.86065840932293 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Diaphanosoma,4.86065840932293 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Alona,2.43032920466147 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Chydorus,2.43032920466147 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Ceriodaphnia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Daphnia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Diaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Ilyocryptus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Macrothrix,4.86065840932293 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Limnoithona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Camptocercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Acartiella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Eurytemora,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Monospilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Microcyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Eucyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Pleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Osphranticum,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Sida,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Disparalona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Mesocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Graptoleberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Kurzia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Simocephalus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Moina,17.0123044326303 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Leydigia,2.43032920466147 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Acanthocyclops,4.86065840932293 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Macrocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Picripleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Arctodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Pseudochydorus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Scapholeberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Alonella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Diacyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Eurycercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Leptodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Skistodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Paracyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Ergasilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Tropocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Anchistropus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,BL5,Acartia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Sinocalanus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Pseudodiaptomus,541.988935972053 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,NA,4714.572423553002 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Bosmina,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Diaphanosoma,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Alona,18.6892736542087 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Chydorus,18.6892736542087 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Ceriodaphnia,112.135641925252 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Daphnia,18.6892736542087 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Diaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Ilyocryptus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Macrothrix,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Limnoithona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Camptocercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Acartiella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Eurytemora,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Monospilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Microcyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Eucyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Pleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Osphranticum,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Sida,18.6892736542087 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Disparalona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Mesocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Graptoleberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Kurzia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Simocephalus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Moina,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Leydigia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Acanthocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Macrocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Picripleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Arctodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Pseudochydorus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Scapholeberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Alonella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Diacyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Eurycercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Leptodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Skistodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Paracyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Ergasilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Tropocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Anchistropus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,LIB,Acartia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Sinocalanus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Pseudodiaptomus,914.242334841927 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,NA,4935.502081477422 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Bosmina,46.884222299586 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Diaphanosoma,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Alona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Chydorus,23.442111149793 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Ceriodaphnia,46.884222299586 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Daphnia,70.326333449379 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Diaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Ilyocryptus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Macrothrix,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Limnoithona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Camptocercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Acartiella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Eurytemora,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Monospilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Microcyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Eucyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Pleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Osphranticum,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Sida,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Disparalona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Mesocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Graptoleberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Kurzia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Simocephalus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Moina,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Leydigia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Acanthocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Macrocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Picripleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Arctodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Pseudochydorus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Scapholeberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Alonella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Diacyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Eurycercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Leptodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Skistodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Paracyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Ergasilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Tropocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Anchistropus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RVB,Acartia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Sinocalanus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Pseudodiaptomus,2798.21593717501 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,NA,10232.282158326521 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Bosmina,125.293250918284 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Diaphanosoma,41.7644169727613 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Alona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Chydorus,41.7644169727613 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Ceriodaphnia,41.7644169727613 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Daphnia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Diaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Ilyocryptus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Macrothrix,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Limnoithona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Camptocercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Acartiella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Eurytemora,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Monospilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Microcyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Eucyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Pleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Osphranticum,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Sida,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Disparalona,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Mesocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Graptoleberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Kurzia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Simocephalus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Moina,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Leydigia,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Acanthocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Macrocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Picripleuroxus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Arctodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Pseudochydorus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Scapholeberis,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Alonella,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Diacyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Eurycercus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Leptodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Skistodiaptomus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Paracyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Ergasilus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Tropocyclops,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Anchistropus,0 +2017,Jul,2017-07-19,Downstream,W,CA,Before,RYI,Acartia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Sinocalanus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Pseudodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,NA,17671.45915433762 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Bosmina,2759.72813446189 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Diaphanosoma,4305.17588976055 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Alona,220.778250756951 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Chydorus,110.389125378476 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Ceriodaphnia,551.945626892378 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Daphnia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Diaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Ilyocryptus,220.778250756951 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Macrothrix,662.334752270854 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Limnoithona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Camptocercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Acartiella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Eurytemora,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Monospilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Microcyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Eucyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Pleuroxus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Osphranticum,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Sida,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Disparalona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Mesocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Graptoleberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Kurzia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Simocephalus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Moina,3753.23026286817 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Leydigia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Acanthocyclops,551.945626892378 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Macrocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Picripleuroxus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Arctodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Pseudochydorus,110.389125378476 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Scapholeberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Alonella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Diacyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Eurycercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Leptodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Skistodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Paracyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Ergasilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Tropocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Anchistropus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,I80,Acartia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Sinocalanus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Pseudodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,NA,3725.9212657701164 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Bosmina,261.468159001412 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Diaphanosoma,102.719633893412 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Alona,93.3814853576471 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Chydorus,9.33814853576471 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Ceriodaphnia,130.734079500706 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Daphnia,9.33814853576471 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Diaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Ilyocryptus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Macrothrix,9.33814853576471 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Limnoithona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Camptocercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Acartiella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Eurytemora,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Monospilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Microcyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Eucyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Pleuroxus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Osphranticum,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Sida,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Disparalona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Mesocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Graptoleberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Kurzia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Simocephalus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Moina,522.936318002824 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Leydigia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Acanthocyclops,18.6762970715294 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Macrocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Picripleuroxus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Arctodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Pseudochydorus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Scapholeberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Alonella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Diacyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Eurycercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Leptodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Skistodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Paracyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Ergasilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Tropocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Anchistropus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RCS,Acartia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Sinocalanus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Pseudodiaptomus,66.1092822863287 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,NA,6009.333759827282 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Bosmina,1652.73205715822 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Diaphanosoma,1189.96708115392 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Alona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Chydorus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Ceriodaphnia,264.437129145315 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Daphnia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Diaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Ilyocryptus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Macrothrix,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Limnoithona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Camptocercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Acartiella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Eurytemora,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Monospilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Microcyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Eucyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Pleuroxus,66.1092822863287 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Osphranticum,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Sida,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Disparalona,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Mesocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Graptoleberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Kurzia,66.1092822863287 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Simocephalus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Moina,7602.56746292781 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Leydigia,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Acanthocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Macrocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Picripleuroxus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Arctodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Pseudochydorus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Scapholeberis,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Alonella,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Diacyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Eurycercus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Leptodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Skistodiaptomus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Paracyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Ergasilus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Tropocyclops,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Anchistropus,0 +2017,Jul,2017-07-20,Upstream,W,CA,Before,RD22,Acartia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Sinocalanus,372.196869111166 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Pseudodiaptomus,153.257534339892 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,NA,142638.9766034852 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Bosmina,175.151467817019 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Diaphanosoma,1576.36321035317 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Alona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Chydorus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Ceriodaphnia,87.5757339085095 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Daphnia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Diaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Ilyocryptus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Macrothrix,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Limnoithona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Camptocercus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Acartiella,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Eurytemora,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Monospilus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Microcyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Eucyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Pleuroxus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Osphranticum,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Sida,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Disparalona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Mesocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Graptoleberis,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Kurzia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Simocephalus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Moina,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Leydigia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Acanthocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Macrocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Picripleuroxus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Arctodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Pseudochydorus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Scapholeberis,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Alonella,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Diacyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Eurycercus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Leptodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Skistodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Paracyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Ergasilus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Tropocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Anchistropus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,LIS,Acartia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Sinocalanus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Pseudodiaptomus,28.9705253311522 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,NA,14717.026868225319 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Bosmina,144.852626655761 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Diaphanosoma,28.9705253311522 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Alona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Chydorus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Ceriodaphnia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Daphnia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Diaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Ilyocryptus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Macrothrix,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Limnoithona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Camptocercus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Acartiella,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Eurytemora,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Monospilus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Microcyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Eucyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Pleuroxus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Osphranticum,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Sida,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Disparalona,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Mesocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Graptoleberis,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Kurzia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Simocephalus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Moina,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Leydigia,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Acanthocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Macrocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Picripleuroxus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Arctodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Pseudochydorus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Scapholeberis,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Alonella,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Diacyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Eurycercus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Leptodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Skistodiaptomus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Paracyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Ergasilus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Tropocyclops,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Anchistropus,0 +2017,Aug,2017-08-02,Upstream,W,CA,Before,STTD,Acartia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Sinocalanus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Pseudodiaptomus,126.955386837396 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,NA,5605.980204218371 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Bosmina,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Diaphanosoma,14.106154093044 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Alona,14.106154093044 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Chydorus,28.2123081860881 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Ceriodaphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Daphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Diaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Ilyocryptus,42.3184622791321 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Macrothrix,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Limnoithona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Camptocercus,42.3184622791321 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Acartiella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Eurytemora,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Monospilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Microcyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Eucyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Pleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Osphranticum,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Sida,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Disparalona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Mesocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Graptoleberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Kurzia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Simocephalus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Moina,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Leydigia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Acanthocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Macrocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Picripleuroxus,28.2123081860881 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Arctodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Pseudochydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Scapholeberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Alonella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Diacyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Eurycercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Leptodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Skistodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Paracyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Ergasilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Tropocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Anchistropus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,BL5,Acartia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Sinocalanus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Pseudodiaptomus,14.8079265944592 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,NA,269.8113180154299 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Bosmina,1.28764579082254 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Diaphanosoma,0.643822895411268 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Alona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Chydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Ceriodaphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Daphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Diaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Ilyocryptus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Macrothrix,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Limnoithona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Camptocercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Acartiella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Eurytemora,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Monospilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Microcyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Eucyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Pleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Osphranticum,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Sida,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Disparalona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Mesocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Graptoleberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Kurzia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Simocephalus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Moina,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Leydigia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Acanthocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Macrocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Picripleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Arctodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Pseudochydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Scapholeberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Alonella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Diacyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Eurycercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Leptodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Skistodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Paracyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Ergasilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Tropocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Anchistropus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,LIB,Acartia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Sinocalanus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Pseudodiaptomus,243.897193797381 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,NA,6872.480927446199 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Bosmina,81.299064599126993 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Diaphanosoma,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Alona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Chydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Ceriodaphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Daphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Diaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Ilyocryptus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Macrothrix,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Limnoithona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Camptocercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Acartiella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Eurytemora,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Monospilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Microcyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Eucyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Pleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Osphranticum,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Sida,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Disparalona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Mesocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Graptoleberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Kurzia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Simocephalus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Moina,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Leydigia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Acanthocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Macrocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Picripleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Arctodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Pseudochydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Scapholeberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Alonella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Diacyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Eurycercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Leptodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Skistodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Paracyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Ergasilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Tropocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Anchistropus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RVB,Acartia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Sinocalanus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Pseudodiaptomus,21.0870985764523 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,NA,121.7457181077218 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Bosmina,1.20497706151156 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Diaphanosoma,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Alona,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Chydorus,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Ceriodaphnia,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Daphnia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Diaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Ilyocryptus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Macrothrix,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Limnoithona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Camptocercus,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Acartiella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Eurytemora,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Monospilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Microcyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Eucyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Pleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Osphranticum,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Sida,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Disparalona,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Mesocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Graptoleberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Kurzia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Simocephalus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Moina,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Leydigia,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Acanthocyclops,0.30124426537789 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Macrocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Picripleuroxus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Arctodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Pseudochydorus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Scapholeberis,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Alonella,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Diacyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Eurycercus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Leptodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Skistodiaptomus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Paracyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Ergasilus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Tropocyclops,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Anchistropus,0 +2017,Aug,2017-08-02,Downstream,W,CA,Before,RYI,Acartia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Sinocalanus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Pseudodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,NA,6603.245114995083 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Bosmina,857.564300648713 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Diaphanosoma,3859.03935291921 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Alona,589.57545669599 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Chydorus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Ceriodaphnia,535.977687905445 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Daphnia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Diaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Ilyocryptus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Macrothrix,696.770994277079 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Limnoithona,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Camptocercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Acartiella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Eurytemora,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Monospilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Microcyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Eucyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Pleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Osphranticum,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Sida,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Disparalona,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Mesocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Graptoleberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Kurzia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Simocephalus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Moina,1447.1397573447 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Leydigia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Acanthocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Macrocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Picripleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Arctodiaptomus,53.5977687905445 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Pseudochydorus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Scapholeberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Alonella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Diacyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Eurycercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Leptodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Skistodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Paracyclops,107.195537581089 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Ergasilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Tropocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Anchistropus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,I80,Acartia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Sinocalanus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Pseudodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,NA,1272.0100890547926 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Bosmina,43.80737479037 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Diaphanosoma,6.73959612159539 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Alona,26.9583844863815 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Chydorus,10.1093941823931 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Ceriodaphnia,37.0677786687746 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Daphnia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Diaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Ilyocryptus,64.0261631551562 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Macrothrix,3.36979806079769 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Limnoithona,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Camptocercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Acartiella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Eurytemora,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Monospilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Microcyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Eucyclops,13.4791922431908 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Pleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Osphranticum,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Sida,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Disparalona,26.9583844863815 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Mesocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Graptoleberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Kurzia,16.8489903039885 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Simocephalus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Moina,107.833537945526 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Leydigia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Acanthocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Macrocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Picripleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Arctodiaptomus,13.4791922431908 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Pseudochydorus,6.73959612159539 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Scapholeberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Alonella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Diacyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Eurycercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Leptodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Skistodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Paracyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Ergasilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Tropocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Anchistropus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RCS,Acartia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Sinocalanus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Pseudodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,NA,409.0757878393607 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Bosmina,487.981847608249 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Diaphanosoma,350.198737695332 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Alona,5.74096291303822 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Chydorus,51.668666217344 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Ceriodaphnia,86.1144436955734 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Daphnia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Diaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Ilyocryptus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Macrothrix,5.74096291303822 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Limnoithona,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Camptocercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Acartiella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Eurytemora,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Monospilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Microcyclops,5.74096291303822 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Eucyclops,11.4819258260764 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Pleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Osphranticum,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Sida,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Disparalona,11.4819258260764 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Mesocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Graptoleberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Kurzia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Simocephalus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Moina,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Leydigia,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Acanthocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Macrocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Picripleuroxus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Arctodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Pseudochydorus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Scapholeberis,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Alonella,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Diacyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Eurycercus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Leptodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Skistodiaptomus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Paracyclops,11.4819258260764 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Ergasilus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Tropocyclops,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Anchistropus,0 +2017,Aug,2017-08-03,Upstream,W,CA,Before,RD22,Acartia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Sinocalanus,569.279979054654 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Pseudodiaptomus,47.4399982545545 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,NA,19008.842377536497 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Bosmina,806.479970327427 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Diaphanosoma,3510.55987083703 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Alona,47.4399982545545 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Chydorus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Ceriodaphnia,94.879996509109 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Daphnia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Diaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Ilyocryptus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Macrothrix,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Limnoithona,47.4399982545545 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Camptocercus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Acartiella,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Eurytemora,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Monospilus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Microcyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Eucyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Pleuroxus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Osphranticum,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Sida,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Disparalona,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Mesocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Graptoleberis,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Kurzia,47.4399982545545 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Simocephalus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Moina,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Leydigia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Acanthocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Macrocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Picripleuroxus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Arctodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Pseudochydorus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Scapholeberis,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Alonella,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Diacyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Eurycercus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Leptodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Skistodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Paracyclops,94.879996509109 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Ergasilus,47.4399982545545 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Tropocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Anchistropus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,LIS,Acartia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Sinocalanus,11.1215620744067 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Pseudodiaptomus,22.2431241488133 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,NA,182860.72362739441 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Bosmina,55.6078103720333 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Diaphanosoma,44.4862482976266 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Alona,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Chydorus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Ceriodaphnia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Daphnia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Diaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Ilyocryptus,11.1215620744067 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Macrothrix,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Limnoithona,22.2431241488133 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Camptocercus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Acartiella,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Eurytemora,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Monospilus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Microcyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Eucyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Pleuroxus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Osphranticum,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Sida,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Disparalona,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Mesocyclops,11.1215620744067 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Graptoleberis,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Kurzia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Simocephalus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Moina,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Leydigia,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Acanthocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Macrocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Picripleuroxus,11.1215620744067 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Arctodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Pseudochydorus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Scapholeberis,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Alonella,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Diacyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Eurycercus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Leptodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Skistodiaptomus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Paracyclops,11.1215620744067 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Ergasilus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Tropocyclops,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Anchistropus,0 +2017,Aug,2017-08-16,Upstream,W,CA,Before,STTD,Acartia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Sinocalanus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Pseudodiaptomus,13.7097242662245 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,NA,1026.270787928803 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Bosmina,3.91706407606413 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Diaphanosoma,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Alona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Chydorus,5.8755961140962 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Ceriodaphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Daphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Diaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Ilyocryptus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Macrothrix,1.95853203803207 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Limnoithona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Camptocercus,13.7097242662245 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Acartiella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Eurytemora,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Monospilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Microcyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Eucyclops,1.95853203803207 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Pleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Osphranticum,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Sida,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Disparalona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Mesocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Graptoleberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Kurzia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Simocephalus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Moina,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Leydigia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Acanthocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Macrocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Picripleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Arctodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Pseudochydorus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Scapholeberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Alonella,13.7097242662245 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Diacyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Eurycercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Leptodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Skistodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Paracyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Ergasilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Tropocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Anchistropus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,BL5,Acartia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Sinocalanus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Pseudodiaptomus,66.9864464767572 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,NA,472.19954073779667 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Bosmina,2.19627693366417 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Diaphanosoma,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Alona,1.09813846683209 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Chydorus,3.29441540049626 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Ceriodaphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Daphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Diaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Ilyocryptus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Macrothrix,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Limnoithona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Camptocercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Acartiella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Eurytemora,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Monospilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Microcyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Eucyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Pleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Osphranticum,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Sida,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Disparalona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Mesocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Graptoleberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Kurzia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Simocephalus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Moina,1.09813846683209 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Leydigia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Acanthocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Macrocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Picripleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Arctodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Pseudochydorus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Scapholeberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Alonella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Diacyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Eurycercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Leptodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Skistodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Paracyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Ergasilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Tropocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Anchistropus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,LIB,Acartia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Sinocalanus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Pseudodiaptomus,250.544287129385 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,NA,4082.201584961448 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Bosmina,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Diaphanosoma,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Alona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Chydorus,33.4059049505847 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Ceriodaphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Daphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Diaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Ilyocryptus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Macrothrix,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Limnoithona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Camptocercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Acartiella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Eurytemora,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Monospilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Microcyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Eucyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Pleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Osphranticum,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Sida,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Disparalona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Mesocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Graptoleberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Kurzia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Simocephalus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Moina,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Leydigia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Acanthocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Macrocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Picripleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Arctodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Pseudochydorus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Scapholeberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Alonella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Diacyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Eurycercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Leptodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Skistodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Paracyclops,16.7029524752923 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Ergasilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Tropocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Anchistropus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RVB,Acartia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Sinocalanus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Pseudodiaptomus,8.9458181893943909 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,NA,142.29814799929997 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Bosmina,1.07349818272733 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Diaphanosoma,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Alona,0.357832727575775 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Chydorus,0.357832727575775 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Ceriodaphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Daphnia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Diaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Ilyocryptus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Macrothrix,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Limnoithona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Camptocercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Acartiella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Eurytemora,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Monospilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Microcyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Eucyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Pleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Osphranticum,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Sida,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Disparalona,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Mesocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Graptoleberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Kurzia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Simocephalus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Moina,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Leydigia,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Acanthocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Macrocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Picripleuroxus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Arctodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Pseudochydorus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Scapholeberis,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Alonella,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Diacyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Eurycercus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Leptodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Skistodiaptomus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Paracyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Ergasilus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Tropocyclops,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Anchistropus,0 +2017,Aug,2017-08-16,Downstream,W,CA,Before,RYI,Acartia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Sinocalanus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Pseudodiaptomus,136.462461527388 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,NA,8074.028973703803 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Bosmina,68.2312307636942 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Diaphanosoma,1364.62461527388 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Alona,341.156153818471 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Chydorus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Ceriodaphnia,443.502999964012 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Daphnia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Diaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Ilyocryptus,136.462461527388 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Macrothrix,204.693692291083 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Limnoithona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Camptocercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Acartiella,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Eurytemora,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Monospilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Microcyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Eucyclops,68.2312307636942 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Pleuroxus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Osphranticum,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Sida,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Disparalona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Mesocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Graptoleberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Kurzia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Simocephalus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Moina,750.543538400636 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Leydigia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Acanthocyclops,272.924923054777 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Macrocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Picripleuroxus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Arctodiaptomus,102.346846145541 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Pseudochydorus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Scapholeberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Alonella,34.1156153818471 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Diacyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Eurycercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Leptodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Skistodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Paracyclops,102.346846145541 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Ergasilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Tropocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Anchistropus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,I80,Acartia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Sinocalanus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Pseudodiaptomus,1.39191270627436 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,NA,193.25609048167186 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Bosmina,15.311039769018 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Diaphanosoma,29.2301668317616 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Alona,20.8786905941154 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Chydorus,13.9191270627436 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Ceriodaphnia,50.108857425877 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Daphnia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Diaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Ilyocryptus,30.622079538036 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Macrothrix,40.3654684819565 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Limnoithona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Camptocercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Acartiella,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Eurytemora,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Monospilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Microcyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Eucyclops,4.17573811882309 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Pleuroxus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Osphranticum,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Sida,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Disparalona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Mesocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Graptoleberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Kurzia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Simocephalus,4.17573811882309 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Moina,1.39191270627436 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Leydigia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Acanthocyclops,5.56765082509745 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Macrocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Picripleuroxus,2.78382541254872 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Arctodiaptomus,2.78382541254872 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Pseudochydorus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Scapholeberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Alonella,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Diacyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Eurycercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Leptodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Skistodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Paracyclops,1.39191270627436 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Ergasilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Tropocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Anchistropus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RCS,Acartia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Sinocalanus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Pseudodiaptomus,9.81965172412985 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,NA,462.66925706858495 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Bosmina,68.737562068909 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Diaphanosoma,330.594941379038 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Alona,114.562603448182 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Chydorus,36.0053896551428 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Ceriodaphnia,13.0928689655065 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Daphnia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Diaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Ilyocryptus,9.81965172412985 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Macrothrix,3.27321724137662 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Limnoithona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Camptocercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Acartiella,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Eurytemora,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Monospilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Microcyclops,3.27321724137662 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Eucyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Pleuroxus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Osphranticum,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Sida,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Disparalona,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Mesocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Graptoleberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Kurzia,6.54643448275323 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Simocephalus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Moina,19.6393034482597 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Leydigia,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Acanthocyclops,6.54643448275323 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Macrocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Picripleuroxus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Arctodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Pseudochydorus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Scapholeberis,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Alonella,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Diacyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Eurycercus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Leptodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Skistodiaptomus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Paracyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Ergasilus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Tropocyclops,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Anchistropus,0 +2017,Aug,2017-08-17,Upstream,W,CA,Before,RD22,Acartia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Sinocalanus,97.2789486975895 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Pseudodiaptomus,13.8969926710842 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,NA,3131.455681884311 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Bosmina,472.497750816863 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Diaphanosoma,569.776699514453 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Alona,208.454890066263 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Chydorus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Ceriodaphnia,13.8969926710842 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Daphnia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Diaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Ilyocryptus,41.6909780132526 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Macrothrix,41.6909780132526 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Limnoithona,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Camptocercus,13.8969926710842 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Acartiella,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Eurytemora,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Monospilus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Microcyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Eucyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Pleuroxus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Osphranticum,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Sida,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Disparalona,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Mesocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Graptoleberis,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Kurzia,27.7939853421684 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Simocephalus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Moina,41.6909780132526 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Leydigia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Acanthocyclops,13.8969926710842 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Macrocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Picripleuroxus,13.8969926710842 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Arctodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Pseudochydorus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Scapholeberis,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Alonella,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Diacyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Eurycercus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Leptodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Skistodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Paracyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Ergasilus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Tropocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Anchistropus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,LIS,Acartia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Sinocalanus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Pseudodiaptomus,50.4920001670958 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,NA,16460.392054473217 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Bosmina,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Diaphanosoma,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Alona,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Chydorus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Ceriodaphnia,25.2460000835479 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Daphnia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Diaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Ilyocryptus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Macrothrix,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Limnoithona,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Camptocercus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Acartiella,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Eurytemora,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Monospilus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Microcyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Eucyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Pleuroxus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Osphranticum,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Sida,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Disparalona,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Mesocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Graptoleberis,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Kurzia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Simocephalus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Moina,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Leydigia,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Acanthocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Macrocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Picripleuroxus,25.2460000835479 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Arctodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Pseudochydorus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Scapholeberis,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Alonella,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Diacyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Eurycercus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Leptodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Skistodiaptomus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Paracyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Ergasilus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Tropocyclops,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Anchistropus,0 +2017,Aug,2017-08-30,Upstream,W,CA,During,STTD,Acartia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Sinocalanus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Pseudodiaptomus,54.2957308463503 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,NA,4895.665064645918 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Bosmina,40.7217981347627 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Diaphanosoma,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Alona,13.5739327115876 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Chydorus,13.5739327115876 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Ceriodaphnia,13.5739327115876 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Daphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Diaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Ilyocryptus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Macrothrix,13.5739327115876 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Limnoithona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Camptocercus,40.7217981347627 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Acartiella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Eurytemora,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Monospilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Microcyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Eucyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Pleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Osphranticum,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Sida,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Disparalona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Mesocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Graptoleberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Kurzia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Simocephalus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Moina,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Leydigia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Acanthocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Macrocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Picripleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Arctodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Pseudochydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Scapholeberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Alonella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Diacyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Eurycercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Leptodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Skistodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Paracyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Ergasilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Tropocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Anchistropus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,BL5,Acartia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Sinocalanus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Pseudodiaptomus,281.811751797666 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,NA,4647.788868233498 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Bosmina,100.647054213452 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Diaphanosoma,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Alona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Chydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Ceriodaphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Daphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Diaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Ilyocryptus,20.1294108426904 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Macrothrix,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Limnoithona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Camptocercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Acartiella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Eurytemora,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Monospilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Microcyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Eucyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Pleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Osphranticum,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Sida,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Disparalona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Mesocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Graptoleberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Kurzia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Simocephalus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Moina,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Leydigia,20.1294108426904 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Acanthocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Macrocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Picripleuroxus,20.1294108426904 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Arctodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Pseudochydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Scapholeberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Alonella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Diacyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Eurycercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Leptodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Skistodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Paracyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Ergasilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Tropocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Anchistropus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,LIB,Acartia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Sinocalanus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Pseudodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,NA,1007.6892868358034 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Bosmina,34.8937528495084 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Diaphanosoma,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Alona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Chydorus,2.90781273745903 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Ceriodaphnia,2.90781273745903 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Daphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Diaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Ilyocryptus,2.90781273745903 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Macrothrix,2.90781273745903 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Limnoithona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Camptocercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Acartiella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Eurytemora,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Monospilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Microcyclops,5.81562547491807 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Eucyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Pleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Osphranticum,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Sida,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Disparalona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Mesocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Graptoleberis,2.90781273745903 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Kurzia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Simocephalus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Moina,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Leydigia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Acanthocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Macrocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Picripleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Arctodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Pseudochydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Scapholeberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Alonella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Diacyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Eurycercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Leptodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Skistodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Paracyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Ergasilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Tropocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Anchistropus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RVB,Acartia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Sinocalanus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Pseudodiaptomus,129.205943738551 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,NA,3427.8728407000353 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Bosmina,139.973105716763 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Diaphanosoma,10.7671619782126 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Alona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Chydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Ceriodaphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Daphnia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Diaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Ilyocryptus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Macrothrix,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Limnoithona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Camptocercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Acartiella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Eurytemora,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Monospilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Microcyclops,10.7671619782126 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Eucyclops,43.0686479128502 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Pleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Osphranticum,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Sida,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Disparalona,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Mesocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Graptoleberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Kurzia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Simocephalus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Moina,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Leydigia,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Acanthocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Macrocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Picripleuroxus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Arctodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Pseudochydorus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Scapholeberis,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Alonella,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Diacyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Eurycercus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Leptodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Skistodiaptomus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Paracyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Ergasilus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Tropocyclops,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Anchistropus,0 +2017,Aug,2017-08-30,Downstream,W,CA,During,RYI,Acartia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Sinocalanus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Pseudodiaptomus,33.5573120187579 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,NA,7421.328619533 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Bosmina,167.78656009379 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Diaphanosoma,3389.28851389455 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Alona,67.1146240375158 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Chydorus,67.1146240375158 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Ceriodaphnia,201.343872112547 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Daphnia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Diaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Ilyocryptus,100.671936056274 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Macrothrix,637.5889283564 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Limnoithona,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Camptocercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Acartiella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Eurytemora,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Monospilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Microcyclops,167.78656009379 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Eucyclops,134.229248075032 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Pleuroxus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Osphranticum,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Sida,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Disparalona,469.802368262611 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Mesocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Graptoleberis,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Kurzia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Simocephalus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Moina,906.047424506464 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Leydigia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Acanthocyclops,134.229248075032 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Macrocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Picripleuroxus,33.5573120187579 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Arctodiaptomus,33.5573120187579 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Pseudochydorus,33.5573120187579 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Scapholeberis,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Alonella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Diacyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Eurycercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Leptodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Skistodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Paracyclops,33.5573120187579 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Ergasilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Tropocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Anchistropus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,I80,Acartia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Sinocalanus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Pseudodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,NA,292.64376517289065 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Bosmina,33.5088280732317 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Diaphanosoma,13.4035312292927 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Alona,26.8070624585854 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Chydorus,30.1579452659086 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Ceriodaphnia,227.860030897976 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Daphnia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Diaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Ilyocryptus,33.5088280732317 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Macrothrix,10.0526484219695 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Limnoithona,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Camptocercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Acartiella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Eurytemora,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Monospilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Microcyclops,40.2105936878781 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Eucyclops,10.0526484219695 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Pleuroxus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Osphranticum,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Sida,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Disparalona,10.0526484219695 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Mesocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Graptoleberis,3.35088280732317 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Kurzia,3.35088280732317 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Simocephalus,16.7544140366159 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Moina,13.4035312292927 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Leydigia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Acanthocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Macrocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Picripleuroxus,6.70176561464635 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Arctodiaptomus,6.70176561464635 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Pseudochydorus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Scapholeberis,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Alonella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Diacyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Eurycercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Leptodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Skistodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Paracyclops,10.0526484219695 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Ergasilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Tropocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Anchistropus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RCS,Acartia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Sinocalanus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Pseudodiaptomus,1.73759020068382 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,NA,124.37487752263144 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Bosmina,50.3901158198308 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Diaphanosoma,139.007216054706 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Alona,39.9645746157279 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Chydorus,19.113492207522 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Ceriodaphnia,17.3759020068382 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Daphnia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Diaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Ilyocryptus,24.3262628095735 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Macrothrix,8.6879510034191 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Limnoithona,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Camptocercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Acartiella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Eurytemora,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Monospilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Microcyclops,6.95036080273528 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Eucyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Pleuroxus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Osphranticum,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Sida,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Disparalona,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Mesocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Graptoleberis,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Kurzia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Simocephalus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Moina,3.47518040136764 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Leydigia,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Acanthocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Macrocyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Picripleuroxus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Arctodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Pseudochydorus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Scapholeberis,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Alonella,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Diacyclops,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Eurycercus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Leptodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Skistodiaptomus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Paracyclops,5.21277060205146 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Ergasilus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Tropocyclops,1.73759020068382 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Anchistropus,0 +2017,Aug,2017-08-31,Upstream,W,CA,During,RD22,Acartia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Sinocalanus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Pseudodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,NA,6280.746233229904 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Bosmina,213.769320742023 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Diaphanosoma,427.538641484045 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Alona,35.6282201236705 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Chydorus,124.698770432847 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Ceriodaphnia,160.326990556517 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Daphnia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Diaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Ilyocryptus,302.839871051199 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Macrothrix,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Limnoithona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Camptocercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Acartiella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Eurytemora,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Monospilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Microcyclops,71.2564402473409 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Eucyclops,17.8141100618352 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Pleuroxus,17.8141100618352 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Osphranticum,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Sida,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Disparalona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Mesocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Graptoleberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Kurzia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Simocephalus,35.6282201236705 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Moina,71.2564402473409 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Leydigia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Acanthocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Macrocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Picripleuroxus,17.8141100618352 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Arctodiaptomus,17.8141100618352 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Pseudochydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Scapholeberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Alonella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Diacyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Eurycercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Leptodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Skistodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Paracyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Ergasilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Tropocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Anchistropus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,I80,Acartia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Sinocalanus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Pseudodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,NA,4978.420151998695 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Bosmina,51.1481522465619 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Diaphanosoma,76.7222283698428 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Alona,76.7222283698428 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Chydorus,8.52469204109365 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Ceriodaphnia,42.6234602054682 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Daphnia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Diaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Ilyocryptus,34.0987681643746 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Macrothrix,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Limnoithona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Camptocercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Acartiella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Eurytemora,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Monospilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Microcyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Eucyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Pleuroxus,25.5740761232809 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Osphranticum,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Sida,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Disparalona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Mesocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Graptoleberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Kurzia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Simocephalus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Moina,59.6728442876555 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Leydigia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Acanthocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Macrocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Picripleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Arctodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Pseudochydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Scapholeberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Alonella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Diacyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Eurycercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Leptodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Skistodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Paracyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Ergasilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Tropocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Anchistropus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,LIS,Acartia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Sinocalanus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Pseudodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,NA,185.2038407181621 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Bosmina,24.9853410749629 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Diaphanosoma,23.4237572577777 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Alona,17.177421989037 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Chydorus,6.24633526874071 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Ceriodaphnia,120.241953923259 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Daphnia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Diaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Ilyocryptus,1.56158381718518 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Macrothrix,31.2316763437036 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Limnoithona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Camptocercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Acartiella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Eurytemora,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Monospilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Microcyclops,4.68475145155553 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Eucyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Pleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Osphranticum,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Sida,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Disparalona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Mesocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Graptoleberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Kurzia,3.12316763437036 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Simocephalus,1.56158381718518 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Moina,4.68475145155553 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Leydigia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Acanthocyclops,3.12316763437036 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Macrocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Picripleuroxus,1.56158381718518 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Arctodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Pseudochydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Scapholeberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Alonella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Diacyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Eurycercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Leptodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Skistodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Paracyclops,4.68475145155553 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Ergasilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Tropocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Anchistropus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RCS,Acartia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Sinocalanus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Pseudodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,NA,3868.962249124508 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Bosmina,135.931513054804 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Diaphanosoma,835.007865908085 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Alona,155.350300634062 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Chydorus,194.187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Ceriodaphnia,368.956964005898 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Daphnia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Diaptomus,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Ilyocryptus,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Macrothrix,77.6751503170311 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Limnoithona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Camptocercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Acartiella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Eurytemora,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Monospilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Microcyclops,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Eucyclops,58.2563627377734 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Pleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Osphranticum,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Sida,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Disparalona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Mesocyclops,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Graptoleberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Kurzia,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Simocephalus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Moina,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Leydigia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Acanthocyclops,58.2563627377734 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Macrocyclops,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Picripleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Arctodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Pseudochydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Scapholeberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Alonella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Diacyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Eurycercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Leptodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Skistodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Paracyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Ergasilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Tropocyclops,19.4187875792578 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Anchistropus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,RD22,Acartia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Sinocalanus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Pseudodiaptomus,471.783394167389 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,NA,18137.450486879625 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Bosmina,104.84075425942 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Diaphanosoma,681.464902686228 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Alona,157.26113138912999 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Chydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Ceriodaphnia,209.68150851884 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Daphnia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Diaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Ilyocryptus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Macrothrix,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Limnoithona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Camptocercus,157.26113138912999 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Acartiella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Eurytemora,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Monospilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Microcyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Eucyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Pleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Osphranticum,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Sida,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Disparalona,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Mesocyclops,52.4203771297099 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Graptoleberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Kurzia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Simocephalus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Moina,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Leydigia,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Acanthocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Macrocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Picripleuroxus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Arctodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Pseudochydorus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Scapholeberis,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Alonella,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Diacyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Eurycercus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Leptodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Skistodiaptomus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Paracyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Ergasilus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Tropocyclops,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Anchistropus,0 +2017,Sep,2017-09-13,Upstream,W,CA,During,STTD,Acartia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Sinocalanus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Pseudodiaptomus,198.438563654158 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,NA,8350.956220445825 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Bosmina,22.0487292949065 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Diaphanosoma,154.341105064345 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Alona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Chydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Ceriodaphnia,132.292375769439 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Daphnia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Diaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Ilyocryptus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Macrothrix,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Limnoithona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Camptocercus,44.0974585898129 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Acartiella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Eurytemora,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Monospilus,22.0487292949065 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Microcyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Eucyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Pleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Osphranticum,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Sida,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Disparalona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Mesocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Graptoleberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Kurzia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Simocephalus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Moina,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Leydigia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Acanthocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Macrocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Picripleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Arctodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Pseudochydorus,22.0487292949065 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Scapholeberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Alonella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Diacyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Eurycercus,44.0974585898129 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Leptodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Skistodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Paracyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Ergasilus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Tropocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Anchistropus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,BL5,Acartia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Sinocalanus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Pseudodiaptomus,597.253039309853 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,NA,2697.5674358598458 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Bosmina,25.9675234482545 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Diaphanosoma,90.8863320688907 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Alona,12.9837617241272 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Chydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Ceriodaphnia,90.8863320688907 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Daphnia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Diaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Ilyocryptus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Macrothrix,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Limnoithona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Camptocercus,12.9837617241272 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Acartiella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Eurytemora,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Monospilus,25.9675234482545 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Microcyclops,25.9675234482545 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Eucyclops,25.9675234482544 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Pleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Osphranticum,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Sida,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Disparalona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Mesocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Graptoleberis,12.9837617241272 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Kurzia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Simocephalus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Moina,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Leydigia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Acanthocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Macrocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Picripleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Arctodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Pseudochydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Scapholeberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Alonella,12.9837617241272 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Diacyclops,12.9837617241272 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Eurycercus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Leptodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Skistodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Paracyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Ergasilus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Tropocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Anchistropus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,LIB,Acartia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Sinocalanus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Pseudodiaptomus,259.980336892755 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,NA,1097.1170216874257 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Bosmina,11.3034929083806 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Diaphanosoma,5.65174645419032 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Alona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Chydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Ceriodaphnia,11.3034929083806 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Daphnia,5.65174645419032 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Diaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Ilyocryptus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Macrothrix,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Limnoithona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Camptocercus,5.65174645419032 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Acartiella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Eurytemora,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Monospilus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Microcyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Eucyclops,5.65174645419032 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Pleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Osphranticum,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Sida,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Disparalona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Mesocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Graptoleberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Kurzia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Simocephalus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Moina,11.3034929083806 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Leydigia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Acanthocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Macrocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Picripleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Arctodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Pseudochydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Scapholeberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Alonella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Diacyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Eurycercus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Leptodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Skistodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Paracyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Ergasilus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Tropocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Anchistropus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RVB,Acartia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Sinocalanus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Pseudodiaptomus,326.993112157898 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,NA,1603.4031742501186 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Bosmina,34.7865012933934 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Diaphanosoma,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Alona,13.9146005173574 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Chydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Ceriodaphnia,20.871900776036 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Daphnia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Diaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Ilyocryptus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Macrothrix,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Limnoithona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Camptocercus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Acartiella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Eurytemora,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Monospilus,13.9146005173574 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Microcyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Eucyclops,6.95730025867868 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Pleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Osphranticum,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Sida,6.95730025867868 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Disparalona,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Mesocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Graptoleberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Kurzia,6.95730025867868 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Simocephalus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Moina,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Leydigia,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Acanthocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Macrocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Picripleuroxus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Arctodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Pseudochydorus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Scapholeberis,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Alonella,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Diacyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Eurycercus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Leptodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Skistodiaptomus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Paracyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Ergasilus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Tropocyclops,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Anchistropus,0 +2017,Sep,2017-09-13,Downstream,W,CA,During,RYI,Acartia,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Sinocalanus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Pseudodiaptomus,43.4512349018747 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,NA,3951.648418576046 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Bosmina,10.8628087254687 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Diaphanosoma,65.1768523528121 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Alona,162.94213088203 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Chydorus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Ceriodaphnia,119.490895980156 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Daphnia,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Diaptomus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Ilyocryptus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Macrothrix,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Limnoithona,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Camptocercus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Acartiella,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Eurytemora,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Monospilus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Microcyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Eucyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Pleuroxus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Osphranticum,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Sida,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Disparalona,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Mesocyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Graptoleberis,10.8628087254687 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Kurzia,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Simocephalus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Moina,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Leydigia,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Acanthocyclops,21.7256174509374 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Macrocyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Picripleuroxus,21.7256174509374 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Arctodiaptomus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Pseudochydorus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Scapholeberis,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Alonella,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Diacyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Eurycercus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Leptodiaptomus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Skistodiaptomus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Paracyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Ergasilus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Tropocyclops,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Anchistropus,0 +2017,Sep,2017-09-20,Upstream,W,CA,After,STTD,Acartia,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Sinocalanus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Pseudodiaptomus,29.2798009282644 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,NA,3970.341005872653 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Bosmina,14.6399004641322 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Diaphanosoma,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Alona,58.5596018565288 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Chydorus,14.6399004641322 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Ceriodaphnia,73.199502320661 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Daphnia,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Diaptomus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Ilyocryptus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Macrothrix,29.2798009282644 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Limnoithona,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Camptocercus,14.6399004641322 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Acartiella,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Eurytemora,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Monospilus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Microcyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Eucyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Pleuroxus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Osphranticum,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Sida,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Disparalona,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Mesocyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Graptoleberis,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Kurzia,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Simocephalus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Moina,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Leydigia,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Acanthocyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Macrocyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Picripleuroxus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Arctodiaptomus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Pseudochydorus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Scapholeberis,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Alonella,14.6399004641322 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Diacyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Eurycercus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Leptodiaptomus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Skistodiaptomus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Paracyclops,29.2798009282644 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Ergasilus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Tropocyclops,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Anchistropus,0 +2017,Oct,2017-10-04,Upstream,W,CA,After,STTD,Acartia,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Sinocalanus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Pseudodiaptomus,10.5387676332202 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,NA,998.8409767929775 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Bosmina,7.90407572491513 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Diaphanosoma,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Alona,15.8081514498303 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Chydorus,7.90407572491513 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Ceriodaphnia,44.7897624411857 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Daphnia,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Diaptomus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Ilyocryptus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Macrothrix,23.7122271747454 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Limnoithona,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Camptocercus,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Acartiella,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Eurytemora,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Monospilus,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Microcyclops,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Eucyclops,5.26938381661008 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Pleuroxus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Osphranticum,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Sida,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Disparalona,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Mesocyclops,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Graptoleberis,7.90407572491513 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Kurzia,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Simocephalus,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Moina,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Leydigia,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Acanthocyclops,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Macrocyclops,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Picripleuroxus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Arctodiaptomus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Pseudochydorus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Scapholeberis,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Alonella,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Diacyclops,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Eurycercus,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Leptodiaptomus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Skistodiaptomus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Paracyclops,2.63469190830504 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Ergasilus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Tropocyclops,5.26938381661008 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Anchistropus,0 +2017,Oct,2017-10-19,Upstream,W,CA,After,STTD,Acartia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Sinocalanus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Pseudodiaptomus,17.0351880921105 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,NA,1428.2001075459145 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Bosmina,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Diaphanosoma,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Alona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Chydorus,21.2939851151382 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Ceriodaphnia,72.3995493914698 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Daphnia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Diaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Ilyocryptus,8.51759404605527 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Macrothrix,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Limnoithona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Camptocercus,12.7763910690829 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Acartiella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Eurytemora,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Monospilus,8.51759404605527 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Microcyclops,34.0703761842211 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Eucyclops,4.25879702302763 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Pleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Osphranticum,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Sida,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Disparalona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Mesocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Graptoleberis,38.3291732072487 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Kurzia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Simocephalus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Moina,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Leydigia,4.25879702302763 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Acanthocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Macrocyclops,8.51759404605527 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Picripleuroxus,4.25879702302763 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Arctodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Pseudochydorus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Scapholeberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Alonella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Diacyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Eurycercus,4.25879702302763 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Leptodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Skistodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Paracyclops,4.25879702302763 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Ergasilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Tropocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Anchistropus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,BL5,Acartia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Sinocalanus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Pseudodiaptomus,119.178505924848 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,NA,3581.5462689623087 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Bosmina,32.5032288885949 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Diaphanosoma,10.8344096295316 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Alona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Chydorus,54.1720481476581 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Ceriodaphnia,130.012915554379 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Daphnia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Diaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Ilyocryptus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Macrothrix,10.8344096295316 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Limnoithona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Camptocercus,21.6688192590632 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Acartiella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Eurytemora,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Monospilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Microcyclops,75.8408674067214 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Eucyclops,10.8344096295316 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Pleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Osphranticum,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Sida,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Disparalona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Mesocyclops,10.8344096295316 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Graptoleberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Kurzia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Simocephalus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Moina,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Leydigia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Acanthocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Macrocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Picripleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Arctodiaptomus,10.8344096295316 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Pseudochydorus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Scapholeberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Alonella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Diacyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Eurycercus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Leptodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Skistodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Paracyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Ergasilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Tropocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Anchistropus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,LIB,Acartia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Sinocalanus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Pseudodiaptomus,132.412300869286 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,NA,1014.7848020219076 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Bosmina,16.0499758629438 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Diaphanosoma,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Alona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Chydorus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Ceriodaphnia,8.0249879314719 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Daphnia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Diaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Ilyocryptus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Macrothrix,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Limnoithona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Camptocercus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Acartiella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Eurytemora,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Monospilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Microcyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Eucyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Pleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Osphranticum,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Sida,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Disparalona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Mesocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Graptoleberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Kurzia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Simocephalus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Moina,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Leydigia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Acanthocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Macrocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Picripleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Arctodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Pseudochydorus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Scapholeberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Alonella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Diacyclops,4.01249396573595 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Eurycercus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Leptodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Skistodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Paracyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Ergasilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Tropocyclops,12.0374818972079 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Anchistropus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RVB,Acartia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Sinocalanus,128.685457588787 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Pseudodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,NA,1729.4828164831113 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Bosmina,16.7850596854939 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Diaphanosoma,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Alona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Chydorus,5.59501989516464 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Ceriodaphnia,33.5701193709878 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Daphnia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Diaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Ilyocryptus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Macrothrix,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Limnoithona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Camptocercus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Acartiella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Eurytemora,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Monospilus,11.1900397903293 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Microcyclops,16.7850596854939 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Eucyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Pleuroxus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Osphranticum,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Sida,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Disparalona,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Mesocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Graptoleberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Kurzia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Simocephalus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Moina,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Leydigia,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Acanthocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Macrocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Picripleuroxus,5.59501989516464 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Arctodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Pseudochydorus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Scapholeberis,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Alonella,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Diacyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Eurycercus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Leptodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Skistodiaptomus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Paracyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Ergasilus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Tropocyclops,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Anchistropus,0 +2017,Oct,2017-10-19,Downstream,W,CA,After,RYI,Acartia,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Sinocalanus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Pseudodiaptomus,103.443254259652 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,NA,4775.6302383206 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Bosmina,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Diaphanosoma,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Alona,12.9304067824565 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Chydorus,25.860813564913 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Ceriodaphnia,12.9304067824565 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Daphnia,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Diaptomus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Ilyocryptus,12.9304067824565 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Macrothrix,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Limnoithona,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Camptocercus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Acartiella,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Eurytemora,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Monospilus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Microcyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Eucyclops,25.860813564913 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Pleuroxus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Osphranticum,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Sida,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Disparalona,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Mesocyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Graptoleberis,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Kurzia,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Simocephalus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Moina,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Leydigia,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Acanthocyclops,25.860813564913 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Macrocyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Picripleuroxus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Arctodiaptomus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Pseudochydorus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Scapholeberis,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Alonella,12.9304067824565 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Diacyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Eurycercus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Leptodiaptomus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Skistodiaptomus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Paracyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Ergasilus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Tropocyclops,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Anchistropus,0 +2017,Nov,2017-11-02,Upstream,W,CA,After,STTD,Acartia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Sinocalanus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,NA,4972.883723197606 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Bosmina,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Diaphanosoma,8902.07580078584 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Alona,61.3936262123161 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Chydorus,1412.05340288327 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Ceriodaphnia,61.3936262123161 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Daphnia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Diaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Ilyocryptus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Macrothrix,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Limnoithona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Camptocercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Acartiella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Eurytemora,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Monospilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Microcyclops,61.3936262123161 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Eucyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Pleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Osphranticum,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Sida,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Disparalona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Mesocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Graptoleberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Kurzia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Simocephalus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Moina,920.904393184742 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Leydigia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Acanthocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Macrocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Picripleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Arctodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Pseudochydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Scapholeberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Alonella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Diacyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Eurycercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Leptodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Skistodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Paracyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Ergasilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Tropocyclops,61.3936262123161 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Anchistropus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,I80,Acartia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Sinocalanus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,NA,59.52230348238039 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Bosmina,2.75566219825835 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Diaphanosoma,254.898753338897 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Alona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Chydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Ceriodaphnia,2.75566219825835 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Daphnia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Diaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Ilyocryptus,15.1561420904209 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Macrothrix,2.75566219825835 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Limnoithona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Camptocercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Acartiella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Eurytemora,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Monospilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Microcyclops,13.7783109912917 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Eucyclops,1.37783109912917 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Pleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Osphranticum,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Sida,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Disparalona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Mesocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Graptoleberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Kurzia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Simocephalus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Moina,1.37783109912917 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Leydigia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Acanthocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Macrocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Picripleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Arctodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Pseudochydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Scapholeberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Alonella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Diacyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Eurycercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Leptodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Skistodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Paracyclops,1.37783109912917 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Ergasilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Tropocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Anchistropus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,LIS,Acartia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Sinocalanus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,NA,790.778641095269 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Bosmina,13.5597272830054 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Diaphanosoma,67.7986364150269 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Alona,20.3395909245081 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Chydorus,250.8549547356 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Ceriodaphnia,162.716727396065 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Daphnia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Diaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Ilyocryptus,37.2892500282648 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Macrothrix,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Limnoithona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Camptocercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Acartiella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Eurytemora,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Monospilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Microcyclops,10.169795462254 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Eucyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Pleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Osphranticum,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Sida,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Disparalona,40.6791818490161 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Mesocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Graptoleberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Kurzia,50.8489773112702 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Simocephalus,13.5597272830054 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Moina,16.9496591037567 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Leydigia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Acanthocyclops,13.5597272830054 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Macrocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Picripleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Arctodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Pseudochydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Scapholeberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Alonella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Diacyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Eurycercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Leptodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Skistodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Paracyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Ergasilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Tropocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Anchistropus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RCS,Acartia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Sinocalanus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,NA,291.4995878824022 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Bosmina,11.6239000572034 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Diaphanosoma,35.7019787471249 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Alona,29.0597501430086 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Chydorus,1.66055715102906 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Ceriodaphnia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Daphnia,0.830278575514532 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Diaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Ilyocryptus,0.830278575514532 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Macrothrix,4.15139287757266 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Limnoithona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Camptocercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Acartiella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Eurytemora,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Monospilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Microcyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Eucyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Pleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Osphranticum,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Sida,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Disparalona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Mesocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Graptoleberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Kurzia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Simocephalus,5.81195002860172 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Moina,18.2661286613197 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Leydigia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Acanthocyclops,8.30278575514532 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Macrocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Picripleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Arctodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Pseudochydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Scapholeberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Alonella,0.830278575514532 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Diacyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Eurycercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Leptodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Skistodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Paracyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Ergasilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Tropocyclops,5.81195002860172 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Anchistropus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,RD22,Acartia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Sinocalanus,10.2243289454148 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,NA,2756.4790836838215 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Bosmina,10.2243289454148 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Diaphanosoma,20.4486578908295 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Alona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Chydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Ceriodaphnia,10.2243289454148 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Daphnia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Diaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Ilyocryptus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Macrothrix,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Limnoithona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Camptocercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Acartiella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Eurytemora,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Monospilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Microcyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Eucyclops,20.4486578908295 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Pleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Osphranticum,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Sida,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Disparalona,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Mesocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Graptoleberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Kurzia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Simocephalus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Moina,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Leydigia,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Acanthocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Macrocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Picripleuroxus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Arctodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Pseudochydorus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Scapholeberis,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Alonella,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Diacyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Eurycercus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Leptodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Skistodiaptomus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Paracyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Ergasilus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Tropocyclops,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Anchistropus,0 +2018,Jul,2018-07-26,Upstream,BN,MA-Ag,Before,STTD,Acartia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Sinocalanus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Pseudodiaptomus,39.7130857565465 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,NA,2461.6003463557804 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Bosmina,15.8852343026186 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Diaphanosoma,7.94261715130929 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Alona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Chydorus,23.8278514539279 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Ceriodaphnia,15.8852343026186 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Daphnia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Diaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Ilyocryptus,7.94261715130929 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Macrothrix,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Limnoithona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Camptocercus,7.94261715130929 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Acartiella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Eurytemora,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Monospilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Microcyclops,7.94261715130929 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Eucyclops,7.94261715130929 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Pleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Osphranticum,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Sida,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Disparalona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Mesocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Graptoleberis,15.8852343026186 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Kurzia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Simocephalus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Moina,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Leydigia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Acanthocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Macrocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Picripleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Arctodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Pseudochydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Scapholeberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Alonella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Diacyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Eurycercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Leptodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Skistodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Paracyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Ergasilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Tropocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Anchistropus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,BL5,Acartia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Sinocalanus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Pseudodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,NA,10211.989299913497 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Bosmina,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Diaphanosoma,67.0860610943222 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Alona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Chydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Ceriodaphnia,44.7240407295482 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Daphnia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Diaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Ilyocryptus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Macrothrix,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Limnoithona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Camptocercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Acartiella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Eurytemora,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Monospilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Microcyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Eucyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Pleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Osphranticum,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Sida,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Disparalona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Mesocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Graptoleberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Kurzia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Simocephalus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Moina,22.3620203647741 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Leydigia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Acanthocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Macrocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Picripleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Arctodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Pseudochydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Scapholeberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Alonella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Diacyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Eurycercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Leptodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Skistodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Paracyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Ergasilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Tropocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Anchistropus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,LIB,Acartia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Sinocalanus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Pseudodiaptomus,1158.702372047114 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,NA,4707.087218998415 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Bosmina,20.3281117903002 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Diaphanosoma,20.3281117903002 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Alona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Chydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Ceriodaphnia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Daphnia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Diaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Ilyocryptus,20.3281117903002 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Macrothrix,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Limnoithona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Camptocercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Acartiella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Eurytemora,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Monospilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Microcyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Eucyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Pleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Osphranticum,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Sida,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Disparalona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Mesocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Graptoleberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Kurzia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Simocephalus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Moina,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Leydigia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Acanthocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Macrocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Picripleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Arctodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Pseudochydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Scapholeberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Alonella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Diacyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Eurycercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Leptodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Skistodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Paracyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Ergasilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Tropocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Anchistropus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RVB,Acartia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Sinocalanus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Pseudodiaptomus,155.130659561001 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,NA,9514.680453074721 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Bosmina,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Diaphanosoma,25.8551099268335 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Alona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Chydorus,51.710219853667 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Ceriodaphnia,51.710219853667 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Daphnia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Diaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Ilyocryptus,25.8551099268335 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Macrothrix,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Limnoithona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Camptocercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Acartiella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Eurytemora,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Monospilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Microcyclops,25.8551099268335 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Eucyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Pleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Osphranticum,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Sida,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Disparalona,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Mesocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Graptoleberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Kurzia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Simocephalus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Moina,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Leydigia,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Acanthocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Macrocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Picripleuroxus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Arctodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Pseudochydorus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Scapholeberis,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Alonella,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Diacyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Eurycercus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Leptodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Skistodiaptomus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Paracyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Ergasilus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Tropocyclops,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Anchistropus,0 +2018,Jul,2018-07-26,Downstream,BN,MA-Ag,Before,RYI,Acartia,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Sinocalanus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Pseudodiaptomus,34.4784103200508 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,NA,3499.558647485154 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Bosmina,22.9856068800339 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Diaphanosoma,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Alona,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Chydorus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Ceriodaphnia,11.4928034400169 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Daphnia,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Diaptomus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Ilyocryptus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Macrothrix,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Limnoithona,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Camptocercus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Acartiella,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Eurytemora,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Monospilus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Microcyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Eucyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Pleuroxus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Osphranticum,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Sida,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Disparalona,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Mesocyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Graptoleberis,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Kurzia,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Simocephalus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Moina,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Leydigia,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Acanthocyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Macrocyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Picripleuroxus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Arctodiaptomus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Pseudochydorus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Scapholeberis,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Alonella,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Diacyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Eurycercus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Leptodiaptomus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Skistodiaptomus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Paracyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Ergasilus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Tropocyclops,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Anchistropus,0 +2018,Aug,2018-08-02,Upstream,BN,MA-Ag,Before,STTD,Acartia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Sinocalanus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Pseudodiaptomus,51.9550592156143 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,NA,9963.825800683362 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Bosmina,17.3183530718714 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Diaphanosoma,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Alona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Chydorus,51.9550592156143 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Ceriodaphnia,17.3183530718714 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Daphnia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Diaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Ilyocryptus,17.3183530718714 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Macrothrix,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Limnoithona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Camptocercus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Acartiella,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Eurytemora,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Monospilus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Microcyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Eucyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Pleuroxus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Osphranticum,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Sida,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Disparalona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Mesocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Graptoleberis,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Kurzia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Simocephalus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Moina,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Leydigia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Acanthocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Macrocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Picripleuroxus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Arctodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Pseudochydorus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Scapholeberis,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Alonella,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Diacyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Eurycercus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Leptodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Skistodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Paracyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Ergasilus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Tropocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Anchistropus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,BL5,Acartia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Sinocalanus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Pseudodiaptomus,278.778725340837 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,NA,4417.224691473735 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Bosmina,32.1667760008658 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Diaphanosoma,10.7222586669553 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Alona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Chydorus,32.1667760008658 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Ceriodaphnia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Daphnia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Diaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Ilyocryptus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Macrothrix,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Limnoithona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Camptocercus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Acartiella,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Eurytemora,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Monospilus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Microcyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Eucyclops,10.7222586669553 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Pleuroxus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Osphranticum,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Sida,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Disparalona,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Mesocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Graptoleberis,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Kurzia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Simocephalus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Moina,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Leydigia,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Acanthocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Macrocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Picripleuroxus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Arctodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Pseudochydorus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Scapholeberis,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Alonella,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Diacyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Eurycercus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Leptodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Skistodiaptomus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Paracyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Ergasilus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Tropocyclops,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Anchistropus,0 +2018,Aug,2018-08-02,Downstream,BN,MA-Ag,Before,RYI,Acartia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Sinocalanus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Pseudodiaptomus,7.92114716276591 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,NA,2206.303523069066 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Bosmina,23.7634414882977 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Diaphanosoma,554.480301393614 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Alona,87.1326187904251 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Chydorus,15.8422943255318 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Ceriodaphnia,142.580648929786 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Daphnia,15.8422943255318 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Diaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Ilyocryptus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Macrothrix,7.92114716276591 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Limnoithona,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Camptocercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Acartiella,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Eurytemora,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Monospilus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Microcyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Eucyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Pleuroxus,47.5268829765955 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Osphranticum,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Sida,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Disparalona,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Mesocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Graptoleberis,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Kurzia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Simocephalus,31.6845886510637 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Moina,7.92114716276591 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Leydigia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Acanthocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Macrocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Picripleuroxus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Arctodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Pseudochydorus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Scapholeberis,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Alonella,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Diacyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Eurycercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Leptodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Skistodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Paracyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Ergasilus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Tropocyclops,7.92114716276591 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Anchistropus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,I80,Acartia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Sinocalanus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Pseudodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,NA,347.381200674566 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Bosmina,4.26234602054682 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Diaphanosoma,29.8364221438278 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Alona,42.6234602054682 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Chydorus,19.1805570924607 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Ceriodaphnia,138.526245667772 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Daphnia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Diaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Ilyocryptus,8.52469204109365 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Macrothrix,6.39351903082023 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Limnoithona,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Camptocercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Acartiella,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Eurytemora,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Monospilus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Microcyclops,44.7546332157416 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Eucyclops,2.13117301027341 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Pleuroxus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Osphranticum,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Sida,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Disparalona,4.26234602054682 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Mesocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Graptoleberis,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Kurzia,36.229941174648 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Simocephalus,2.13117301027341 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Moina,2.13117301027341 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Leydigia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Acanthocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Macrocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Picripleuroxus,10.6558650513671 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Arctodiaptomus,4.26234602054682 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Pseudochydorus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Scapholeberis,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Alonella,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Diacyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Eurycercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Leptodiaptomus,2.13117301027341 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Skistodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Paracyclops,2.13117301027341 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Ergasilus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Tropocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Anchistropus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RCS,Acartia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Sinocalanus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Pseudodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,NA,156.5506198315821 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Bosmina,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Diaphanosoma,22.3643742616546 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Alona,41.0013528130334 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Chydorus,8.94574970466183 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Ceriodaphnia,0.745479142055153 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Daphnia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Diaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Ilyocryptus,49.9471025176952 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Macrothrix,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Limnoithona,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Camptocercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Acartiella,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Eurytemora,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Monospilus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Microcyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Eucyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Pleuroxus,2.23643742616546 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Osphranticum,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Sida,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Disparalona,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Mesocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Graptoleberis,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Kurzia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Simocephalus,2.98191656822061 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Moina,6.70931227849638 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Leydigia,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Acanthocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Macrocyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Picripleuroxus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Arctodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Pseudochydorus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Scapholeberis,0.745479142055153 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Alonella,12.6731454149376 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Diacyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Eurycercus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Leptodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Skistodiaptomus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Paracyclops,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Ergasilus,2.98191656822061 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Tropocyclops,2.98191656822061 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Anchistropus,0 +2018,Aug,2018-08-07,Upstream,BN,MA-Ag,Before,RD22,Acartia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Sinocalanus,3.35188390444 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Pseudodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,NA,461.8417179760544 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Bosmina,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Diaphanosoma,72.0655039454601 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Alona,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Chydorus,1.67594195222 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Ceriodaphnia,1.67594195222 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Daphnia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Diaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Ilyocryptus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Macrothrix,48.6023166143801 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Limnoithona,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Camptocercus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Acartiella,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Eurytemora,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Monospilus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Microcyclops,1.67594195222 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Eucyclops,8.37970976110001 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Pleuroxus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Osphranticum,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Sida,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Disparalona,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Mesocyclops,1.67594195222 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Graptoleberis,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Kurzia,1.67594195222 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Simocephalus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Moina,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Leydigia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Acanthocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Macrocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Picripleuroxus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Arctodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Pseudochydorus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Scapholeberis,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Alonella,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Diacyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Eurycercus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Leptodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Skistodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Paracyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Ergasilus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Tropocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Anchistropus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,LIS,Acartia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Sinocalanus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Pseudodiaptomus,11.1699028700119 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,NA,2131.589797693935 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Bosmina,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Diaphanosoma,27.9247571750297 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Alona,16.7548543050178 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Chydorus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Ceriodaphnia,5.58495143500594 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Daphnia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Diaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Ilyocryptus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Macrothrix,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Limnoithona,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Camptocercus,5.58495143500594 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Acartiella,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Eurytemora,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Monospilus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Microcyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Eucyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Pleuroxus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Osphranticum,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Sida,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Disparalona,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Mesocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Graptoleberis,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Kurzia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Simocephalus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Moina,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Leydigia,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Acanthocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Macrocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Picripleuroxus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Arctodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Pseudochydorus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Scapholeberis,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Alonella,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Diacyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Eurycercus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Leptodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Skistodiaptomus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Paracyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Ergasilus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Tropocyclops,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Anchistropus,0 +2018,Aug,2018-08-08,Upstream,BN,MA-Ag,Before,STTD,Acartia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Sinocalanus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Pseudodiaptomus,100.361794540389 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,NA,5948.945371381538 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Bosmina,37.6356729526458 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Diaphanosoma,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Alona,25.0904486350972 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Chydorus,37.6356729526458 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Ceriodaphnia,25.0904486350972 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Daphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Diaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Ilyocryptus,37.6356729526458 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Macrothrix,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Limnoithona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Camptocercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Acartiella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Eurytemora,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Monospilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Microcyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Eucyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Pleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Osphranticum,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Sida,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Disparalona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Mesocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Graptoleberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Kurzia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Simocephalus,12.5452243175486 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Moina,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Leydigia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Acanthocyclops,12.5452243175486 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Macrocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Picripleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Arctodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Pseudochydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Scapholeberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Alonella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Diacyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Eurycercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Leptodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Skistodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Paracyclops,12.5452243175486 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Ergasilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Tropocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Anchistropus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,BL5,Acartia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Sinocalanus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Pseudodiaptomus,325.257312917759 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,NA,8518.515906085757 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Bosmina,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Diaphanosoma,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Alona,29.5688466288871 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Chydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Ceriodaphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Daphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Diaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Ilyocryptus,29.5688466288871 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Macrothrix,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Limnoithona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Camptocercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Acartiella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Eurytemora,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Monospilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Microcyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Eucyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Pleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Osphranticum,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Sida,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Disparalona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Mesocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Graptoleberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Kurzia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Simocephalus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Moina,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Leydigia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Acanthocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Macrocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Picripleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Arctodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Pseudochydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Scapholeberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Alonella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Diacyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Eurycercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Leptodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Skistodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Paracyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Ergasilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Tropocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Anchistropus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,LIB,Acartia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Sinocalanus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Pseudodiaptomus,3.08748502159042 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,NA,774.9587404191954 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Bosmina,101.887005712484 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Diaphanosoma,15.4374251079521 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Alona,3.08748502159042 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Chydorus,18.5249101295425 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Ceriodaphnia,3.08748502159042 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Daphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Diaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Ilyocryptus,3.08748502159042 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Macrothrix,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Limnoithona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Camptocercus,9.26245506477126 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Acartiella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Eurytemora,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Monospilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Microcyclops,9.26245506477126 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Eucyclops,6.17497004318084 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Pleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Osphranticum,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Sida,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Disparalona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Mesocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Graptoleberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Kurzia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Simocephalus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Moina,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Leydigia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Acanthocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Macrocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Picripleuroxus,6.17497004318084 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Arctodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Pseudochydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Scapholeberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Alonella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Diacyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Eurycercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Leptodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Skistodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Paracyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Ergasilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Tropocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Anchistropus,3.08748502159042 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RVB,Acartia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Sinocalanus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Pseudodiaptomus,298.022996382682 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,NA,5417.188840497711 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Bosmina,24.8352496985568 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Diaphanosoma,74.5057490956706 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Alona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Chydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Ceriodaphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Daphnia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Diaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Ilyocryptus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Macrothrix,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Limnoithona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Camptocercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Acartiella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Eurytemora,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Monospilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Microcyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Eucyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Pleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Osphranticum,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Sida,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Disparalona,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Mesocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Graptoleberis,24.8352496985568 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Kurzia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Simocephalus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Moina,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Leydigia,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Acanthocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Macrocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Picripleuroxus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Arctodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Pseudochydorus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Scapholeberis,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Alonella,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Diacyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Eurycercus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Leptodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Skistodiaptomus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Paracyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Ergasilus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Tropocyclops,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Anchistropus,0 +2018,Aug,2018-08-08,Downstream,BN,MA-Ag,Before,RYI,Acartia,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Sinocalanus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Pseudodiaptomus,30.9919234887157 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,NA,3049.0149489374617 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Bosmina,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Diaphanosoma,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Alona,10.3306411629052 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Chydorus,10.3306411629052 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Ceriodaphnia,10.3306411629052 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Daphnia,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Diaptomus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Ilyocryptus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Macrothrix,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Limnoithona,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Camptocercus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Acartiella,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Eurytemora,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Monospilus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Microcyclops,20.6612823258105 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Eucyclops,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Pleuroxus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Osphranticum,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Sida,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Disparalona,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Mesocyclops,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Graptoleberis,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Kurzia,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Simocephalus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Moina,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Leydigia,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Acanthocyclops,30.9919234887157 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Macrocyclops,10.3306411629052 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Picripleuroxus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Arctodiaptomus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Pseudochydorus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Scapholeberis,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Alonella,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Diacyclops,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Eurycercus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Leptodiaptomus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Skistodiaptomus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Paracyclops,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Ergasilus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Tropocyclops,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Anchistropus,0 +2018,Aug,2018-08-13,Upstream,BN,MA-Ag,Before,STTD,Acartia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Sinocalanus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Pseudodiaptomus,98.85660906654411 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,NA,3668.6786031361917 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Bosmina,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Diaphanosoma,32.9522030221814 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Alona,21.9681353481209 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Chydorus,32.9522030221814 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Ceriodaphnia,10.9840676740605 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Daphnia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Diaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Ilyocryptus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Macrothrix,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Limnoithona,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Camptocercus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Acartiella,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Eurytemora,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Monospilus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Microcyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Eucyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Pleuroxus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Osphranticum,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Sida,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Disparalona,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Mesocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Graptoleberis,65.9044060443627 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Kurzia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Simocephalus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Moina,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Leydigia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Acanthocyclops,10.9840676740605 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Macrocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Picripleuroxus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Arctodiaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Pseudochydorus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Scapholeberis,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Alonella,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Diacyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Eurycercus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Leptodiaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Skistodiaptomus,10.9840676740605 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Paracyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Ergasilus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Tropocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Anchistropus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,BL5,Acartia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Sinocalanus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Pseudodiaptomus,109.795915711856 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,NA,2848.8380263369572 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Bosmina,12.1995461902062 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Diaphanosoma,12.1995461902062 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Alona,48.7981847608249 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Chydorus,12.1995461902062 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Ceriodaphnia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Daphnia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Diaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Ilyocryptus,24.3990923804124 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Macrothrix,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Limnoithona,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Camptocercus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Acartiella,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Eurytemora,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Monospilus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Microcyclops,12.1995461902062 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Eucyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Pleuroxus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Osphranticum,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Sida,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Disparalona,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Mesocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Graptoleberis,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Kurzia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Simocephalus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Moina,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Leydigia,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Acanthocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Macrocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Picripleuroxus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Arctodiaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Pseudochydorus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Scapholeberis,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Alonella,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Diacyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Eurycercus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Leptodiaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Skistodiaptomus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Paracyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Ergasilus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Tropocyclops,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Anchistropus,0 +2018,Aug,2018-08-13,Downstream,BN,MA-Ag,Before,RYI,Acartia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Sinocalanus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Pseudodiaptomus,1.60751810351314 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,NA,819.8342327917034 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Bosmina,8.03759051756572 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Diaphanosoma,104.488676728354 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Alona,27.3278077597234 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Chydorus,12.8601448281052 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Ceriodaphnia,130.208966384565 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Daphnia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Diaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Ilyocryptus,14.4676629316183 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Macrothrix,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Limnoithona,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Camptocercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Acartiella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Eurytemora,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Monospilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Microcyclops,3.21503620702629 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Eucyclops,3.21503620702629 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Pleuroxus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Osphranticum,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Sida,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Disparalona,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Mesocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Graptoleberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Kurzia,6.43007241405258 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Simocephalus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Moina,3.21503620702629 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Leydigia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Acanthocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Macrocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Picripleuroxus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Arctodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Pseudochydorus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Scapholeberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Alonella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Diacyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Eurycercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Leptodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Skistodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Paracyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Ergasilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Tropocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Anchistropus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,I80,Acartia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Sinocalanus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Pseudodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,NA,71.87685567123859 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Bosmina,27.2810557627576 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Diaphanosoma,8.58848051790518 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Alona,14.1457326177262 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Chydorus,4.04163789077891 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Ceriodaphnia,32.3331031262313 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Daphnia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Diaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Ilyocryptus,0.505204736347364 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Macrothrix,1.01040947269473 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Limnoithona,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Camptocercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Acartiella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Eurytemora,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Monospilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Microcyclops,5.05204736347364 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Eucyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Pleuroxus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Osphranticum,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Sida,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Disparalona,1.51561420904209 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Mesocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Graptoleberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Kurzia,2.02081894538945 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Simocephalus,2.02081894538945 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Moina,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Leydigia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Acanthocyclops,1.51561420904209 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Macrocyclops,0.505204736347364 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Picripleuroxus,0.505204736347364 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Arctodiaptomus,0.505204736347364 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Pseudochydorus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Scapholeberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Alonella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Diacyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Eurycercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Leptodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Skistodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Paracyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Ergasilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Tropocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Anchistropus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RCS,Acartia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Sinocalanus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Pseudodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,NA,67.67293989545111 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Bosmina,36.7217503308649 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Diaphanosoma,129.837617241272 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Alona,20.3281117903002 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Chydorus,14.4264019156969 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Ceriodaphnia,1.96723662486776 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Daphnia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Diaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Ilyocryptus,15.7378929989421 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Macrothrix,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Limnoithona,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Camptocercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Acartiella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Eurytemora,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Monospilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Microcyclops,1.31149108324518 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Eucyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Pleuroxus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Osphranticum,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Sida,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Disparalona,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Mesocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Graptoleberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Kurzia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Simocephalus,1.31149108324518 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Moina,2.62298216649035 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Leydigia,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Acanthocyclops,0.655745541622588 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Macrocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Picripleuroxus,3.27872770811294 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Arctodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Pseudochydorus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Scapholeberis,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Alonella,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Diacyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Eurycercus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Leptodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Skistodiaptomus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Paracyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Ergasilus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Tropocyclops,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Anchistropus,0 +2018,Aug,2018-08-21,Upstream,BN,MA-Ag,Before,RD22,Acartia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Sinocalanus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Pseudodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,NA,11352.479259449057 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Bosmina,22.0222682045568 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Diaphanosoma,264.267218454682 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Alona,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Chydorus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Ceriodaphnia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Daphnia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Diaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Ilyocryptus,22.0222682045568 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Macrothrix,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Limnoithona,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Camptocercus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Acartiella,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Eurytemora,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Monospilus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Microcyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Eucyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Pleuroxus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Osphranticum,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Sida,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Disparalona,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Mesocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Graptoleberis,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Kurzia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Simocephalus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Moina,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Leydigia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Acanthocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Macrocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Picripleuroxus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Arctodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Pseudochydorus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Scapholeberis,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Alonella,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Diacyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Eurycercus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Leptodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Skistodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Paracyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Ergasilus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Tropocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Anchistropus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,LIS,Acartia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Sinocalanus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Pseudodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,NA,3688.772178864113 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Bosmina,21.9787816019709 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Diaphanosoma,7.3262605339903 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Alona,14.6525210679806 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Chydorus,21.9787816019709 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Ceriodaphnia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Daphnia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Diaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Ilyocryptus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Macrothrix,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Limnoithona,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Camptocercus,7.3262605339903 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Acartiella,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Eurytemora,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Monospilus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Microcyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Eucyclops,7.3262605339903 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Pleuroxus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Osphranticum,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Sida,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Disparalona,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Mesocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Graptoleberis,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Kurzia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Simocephalus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Moina,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Leydigia,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Acanthocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Macrocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Picripleuroxus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Arctodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Pseudochydorus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Scapholeberis,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Alonella,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Diacyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Eurycercus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Leptodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Skistodiaptomus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Paracyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Ergasilus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Tropocyclops,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Anchistropus,0 +2018,Aug,2018-08-22,Upstream,BN,MA-Ag,Before,STTD,Acartia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Sinocalanus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Pseudodiaptomus,11.6387355992311 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,NA,3485.8013119697084 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Bosmina,11.6387355992311 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Diaphanosoma,11.6387355992311 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Alona,17.4581033988466 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Chydorus,87.2905169942331 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Ceriodaphnia,29.0968389980777 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Daphnia,5.81936779961554 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Diaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Ilyocryptus,5.81936779961554 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Macrothrix,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Limnoithona,11.6387355992311 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Camptocercus,11.6387355992311 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Acartiella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Eurytemora,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Monospilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Microcyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Eucyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Pleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Osphranticum,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Sida,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Disparalona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Mesocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Graptoleberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Kurzia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Simocephalus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Moina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Leydigia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Acanthocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Macrocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Picripleuroxus,5.81936779961554 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Arctodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Pseudochydorus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Scapholeberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Alonella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Diacyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Eurycercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Leptodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Skistodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Paracyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Ergasilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Tropocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Anchistropus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,BL5,Acartia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Sinocalanus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Pseudodiaptomus,50.9926707182736 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,NA,10041.16839006601 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Bosmina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Diaphanosoma,76.4890060774104 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Alona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Chydorus,50.9926707182736 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Ceriodaphnia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Daphnia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Diaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Ilyocryptus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Macrothrix,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Limnoithona,25.4963353591368 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Camptocercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Acartiella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Eurytemora,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Monospilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Microcyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Eucyclops,25.4963353591368 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Pleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Osphranticum,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Sida,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Disparalona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Mesocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Graptoleberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Kurzia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Simocephalus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Moina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Leydigia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Acanthocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Macrocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Picripleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Arctodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Pseudochydorus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Scapholeberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Alonella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Diacyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Eurycercus,25.4963353591368 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Leptodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Skistodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Paracyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Ergasilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Tropocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Anchistropus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,LIB,Acartia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Sinocalanus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Pseudodiaptomus,132.396508830064 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,NA,5321.604118808406 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Bosmina,16.549563603758 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Diaphanosoma,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Alona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Chydorus,16.549563603758 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Ceriodaphnia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Daphnia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Diaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Ilyocryptus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Macrothrix,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Limnoithona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Camptocercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Acartiella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Eurytemora,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Monospilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Microcyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Eucyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Pleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Osphranticum,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Sida,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Disparalona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Mesocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Graptoleberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Kurzia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Simocephalus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Moina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Leydigia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Acanthocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Macrocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Picripleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Arctodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Pseudochydorus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Scapholeberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Alonella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Diacyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Eurycercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Leptodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Skistodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Paracyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Ergasilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Tropocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Anchistropus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RVB,Acartia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Sinocalanus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Pseudodiaptomus,41.5543696116242 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,NA,14688.171083658788 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Bosmina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Diaphanosoma,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Alona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Chydorus,41.5543696116242 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Ceriodaphnia,41.5543696116242 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Daphnia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Diaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Ilyocryptus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Macrothrix,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Limnoithona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Camptocercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Acartiella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Eurytemora,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Monospilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Microcyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Eucyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Pleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Osphranticum,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Sida,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Disparalona,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Mesocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Graptoleberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Kurzia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Simocephalus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Moina,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Leydigia,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Acanthocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Macrocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Picripleuroxus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Arctodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Pseudochydorus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Scapholeberis,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Alonella,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Diacyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Eurycercus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Leptodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Skistodiaptomus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Paracyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Ergasilus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Tropocyclops,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Anchistropus,0 +2018,Aug,2018-08-22,Downstream,BN,MA-Ag,Before,RYI,Acartia,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Sinocalanus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Pseudodiaptomus,39.9278052083341 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,NA,22479.354332292118 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Bosmina,119.783415625002 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Diaphanosoma,2395.66831250005 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Alona,39.9278052083341 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Chydorus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Ceriodaphnia,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Daphnia,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Diaptomus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Ilyocryptus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Macrothrix,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Limnoithona,39.9278052083341 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Camptocercus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Acartiella,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Eurytemora,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Monospilus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Microcyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Eucyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Pleuroxus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Osphranticum,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Sida,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Disparalona,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Mesocyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Graptoleberis,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Kurzia,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Simocephalus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Moina,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Leydigia,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Acanthocyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Macrocyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Picripleuroxus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Arctodiaptomus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Pseudochydorus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Scapholeberis,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Alonella,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Diacyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Eurycercus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Leptodiaptomus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Skistodiaptomus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Paracyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Ergasilus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Tropocyclops,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Anchistropus,0 +2018,Aug,2018-08-30,Upstream,BN,MA-Ag,During,STTD,Acartia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Sinocalanus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Pseudodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,NA,7070.3459786983 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Bosmina,46.8234833026377 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Diaphanosoma,31.2156555350918 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Alona,31.2156555350918 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Chydorus,62.4313110701836 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Ceriodaphnia,62.4313110701836 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Daphnia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Diaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Ilyocryptus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Macrothrix,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Limnoithona,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Camptocercus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Acartiella,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Eurytemora,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Monospilus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Microcyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Eucyclops,31.2156555350918 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Pleuroxus,15.6078277675459 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Osphranticum,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Sida,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Disparalona,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Mesocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Graptoleberis,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Kurzia,15.6078277675459 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Simocephalus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Moina,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Leydigia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Acanthocyclops,15.6078277675459 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Macrocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Picripleuroxus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Arctodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Pseudochydorus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Scapholeberis,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Alonella,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Diacyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Eurycercus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Leptodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Skistodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Paracyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Ergasilus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Tropocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Anchistropus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,BL5,Acartia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Sinocalanus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Pseudodiaptomus,393.8998143622041 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,NA,4594.412710770175 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Bosmina,35.8090740329277 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Diaphanosoma,35.8090740329277 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Alona,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Chydorus,11.9363580109759 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Ceriodaphnia,23.8727160219518 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Daphnia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Diaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Ilyocryptus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Macrothrix,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Limnoithona,11.9363580109759 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Camptocercus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Acartiella,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Eurytemora,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Monospilus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Microcyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Eucyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Pleuroxus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Osphranticum,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Sida,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Disparalona,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Mesocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Graptoleberis,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Kurzia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Simocephalus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Moina,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Leydigia,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Acanthocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Macrocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Picripleuroxus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Arctodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Pseudochydorus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Scapholeberis,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Alonella,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Diacyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Eurycercus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Leptodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Skistodiaptomus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Paracyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Ergasilus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Tropocyclops,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Anchistropus,0 +2018,Aug,2018-08-30,Downstream,BN,MA-Ag,During,RYI,Acartia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Sinocalanus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Pseudodiaptomus,2.28394344992388 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,NA,246.66589259177843 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Bosmina,4.56788689984775 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Diaphanosoma,31.9752082989343 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Alona,22.8394344992388 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Chydorus,100.493511796651 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Ceriodaphnia,4.56788689984775 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Daphnia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Diaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Ilyocryptus,27.4073213990865 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Macrothrix,2.28394344992388 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Limnoithona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Camptocercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Acartiella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Eurytemora,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Monospilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Microcyclops,22.8394344992388 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Eucyclops,2.28394344992388 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Pleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Osphranticum,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Sida,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Disparalona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Mesocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Graptoleberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Kurzia,4.56788689984775 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Simocephalus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Moina,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Leydigia,9.1357737996955 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Acanthocyclops,15.9876041494671 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Macrocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Picripleuroxus,4.56788689984775 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Arctodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Pseudochydorus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Scapholeberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Alonella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Diacyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Eurycercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Leptodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Skistodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Paracyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Ergasilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Tropocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Anchistropus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,I80,Acartia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Sinocalanus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Pseudodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,NA,854.2403058510813 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Bosmina,128.136045877662 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Diaphanosoma,280.678957636784 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Alona,48.8137317629189 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Chydorus,262.373808225689 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Ceriodaphnia,360.001271751527 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Daphnia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Diaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Ilyocryptus,36.6102988221892 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Macrothrix,30.5085823518243 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Limnoithona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Camptocercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Acartiella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Eurytemora,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Monospilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Microcyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Eucyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Pleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Osphranticum,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Sida,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Disparalona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Mesocyclops,6.10171647036486 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Graptoleberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Kurzia,36.6102988221892 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Simocephalus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Moina,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Leydigia,18.3051494110946 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Acanthocyclops,6.10171647036486 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Macrocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Picripleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Arctodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Pseudochydorus,6.10171647036486 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Scapholeberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Alonella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Diacyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Eurycercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Leptodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Skistodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Paracyclops,6.10171647036486 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Ergasilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Tropocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Anchistropus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,LIS,Acartia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Sinocalanus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Pseudodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,NA,287.57270888272075 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Bosmina,217.870760575878 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Diaphanosoma,26.2947469660543 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Alona,52.5894939321086 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Chydorus,15.0255696948882 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Ceriodaphnia,510.869369626197 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Daphnia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Diaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Ilyocryptus,7.51278484744408 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Macrothrix,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Limnoithona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Camptocercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Acartiella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Eurytemora,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Monospilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Microcyclops,11.2691772711661 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Eucyclops,7.51278484744408 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Pleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Osphranticum,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Sida,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Disparalona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Mesocyclops,3.75639242372204 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Graptoleberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Kurzia,26.2947469660543 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Simocephalus,7.51278484744408 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Moina,3.75639242372204 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Leydigia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Acanthocyclops,15.0255696948882 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Macrocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Picripleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Arctodiaptomus,7.51278484744408 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Pseudochydorus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Scapholeberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Alonella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Diacyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Eurycercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Leptodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Skistodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Paracyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Ergasilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Tropocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Anchistropus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RCS,Acartia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Sinocalanus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Pseudodiaptomus,6.99187098296812 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,NA,525.2643075954802 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Bosmina,342.601678165438 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Diaphanosoma,195.772387523107 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Alona,125.853677693426 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Chydorus,251.707355386852 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Ceriodaphnia,174.796774574203 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Daphnia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Diaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Ilyocryptus,55.934967863745 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Macrothrix,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Limnoithona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Camptocercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Acartiella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Eurytemora,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Monospilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Microcyclops,34.9593549148406 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Eucyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Pleuroxus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Osphranticum,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Sida,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Disparalona,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Mesocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Graptoleberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Kurzia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Simocephalus,6.99187098296812 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Moina,6.99187098296812 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Leydigia,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Acanthocyclops,6.99187098296812 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Macrocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Picripleuroxus,6.99187098296812 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Arctodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Pseudochydorus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Scapholeberis,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Alonella,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Diacyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Eurycercus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Leptodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Skistodiaptomus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Paracyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Ergasilus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Tropocyclops,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Anchistropus,0 +2018,Sep,2018-09-04,Upstream,BN,MA-Ag,During,RD22,Acartia,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Sinocalanus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Pseudodiaptomus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,NA,5335.89543756132 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Bosmina,50.5239967785922 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Diaphanosoma,5.61377741984357 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Alona,16.8413322595307 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Chydorus,16.8413322595307 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Ceriodaphnia,44.9102193587486 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Daphnia,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Diaptomus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Ilyocryptus,5.61377741984357 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Macrothrix,5.61377741984357 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Limnoithona,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Camptocercus,5.61377741984357 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Acartiella,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Eurytemora,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Monospilus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Microcyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Eucyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Pleuroxus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Osphranticum,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Sida,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Disparalona,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Mesocyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Graptoleberis,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Kurzia,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Simocephalus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Moina,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Leydigia,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Acanthocyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Macrocyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Picripleuroxus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Arctodiaptomus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Pseudochydorus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Scapholeberis,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Alonella,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Diacyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Eurycercus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Leptodiaptomus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Skistodiaptomus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Paracyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Ergasilus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Tropocyclops,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Anchistropus,0 +2018,Sep,2018-09-05,Upstream,BN,MA-Ag,During,STTD,Acartia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Sinocalanus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Pseudodiaptomus,21.1909163060662 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,NA,1685.7373921475637 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Bosmina,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Diaphanosoma,8.47636652242646 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Alona,12.7145497836397 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Chydorus,16.9527330448529 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Ceriodaphnia,12.7145497836397 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Daphnia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Diaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Ilyocryptus,4.23818326121323 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Macrothrix,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Limnoithona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Camptocercus,38.1436493509191 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Acartiella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Eurytemora,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Monospilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Microcyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Eucyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Pleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Osphranticum,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Sida,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Disparalona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Mesocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Graptoleberis,8.47636652242646 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Kurzia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Simocephalus,4.23818326121323 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Moina,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Leydigia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Acanthocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Macrocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Picripleuroxus,16.9527330448529 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Arctodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Pseudochydorus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Scapholeberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Alonella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Diacyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Eurycercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Leptodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Skistodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Paracyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Ergasilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Tropocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Anchistropus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,BL5,Acartia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Sinocalanus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Pseudodiaptomus,418.614685020432 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,NA,3765.5851201372748 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Bosmina,19.4704504660666 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Diaphanosoma,29.2056756990999 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Alona,19.4704504660666 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Chydorus,68.146576631233 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Ceriodaphnia,29.2056756990999 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Daphnia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Diaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Ilyocryptus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Macrothrix,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Limnoithona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Camptocercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Acartiella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Eurytemora,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Monospilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Microcyclops,9.73522523303329 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Eucyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Pleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Osphranticum,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Sida,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Disparalona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Mesocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Graptoleberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Kurzia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Simocephalus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Moina,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Leydigia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Acanthocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Macrocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Picripleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Arctodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Pseudochydorus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Scapholeberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Alonella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Diacyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Eurycercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Leptodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Skistodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Paracyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Ergasilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Tropocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Anchistropus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,LIB,Acartia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Sinocalanus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Pseudodiaptomus,76.5036465226353 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,NA,1804.830312392573 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Bosmina,10.9290923603765 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Diaphanosoma,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Alona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Chydorus,43.7163694415059 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Ceriodaphnia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Daphnia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Diaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Ilyocryptus,5.46454618018824 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Macrothrix,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Limnoithona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Camptocercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Acartiella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Eurytemora,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Monospilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Microcyclops,10.9290923603765 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Eucyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Pleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Osphranticum,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Sida,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Disparalona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Mesocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Graptoleberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Kurzia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Simocephalus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Moina,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Leydigia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Acanthocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Macrocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Picripleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Arctodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Pseudochydorus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Scapholeberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Alonella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Diacyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Eurycercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Leptodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Skistodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Paracyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Ergasilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Tropocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Anchistropus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RVB,Acartia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Sinocalanus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Pseudodiaptomus,54.6586931485656 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,NA,5201.685631305164 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Bosmina,72.8782575314208 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Diaphanosoma,54.6586931485656 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Alona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Chydorus,109.317386297131 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Ceriodaphnia,18.2195643828552 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Daphnia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Diaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Ilyocryptus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Macrothrix,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Limnoithona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Camptocercus,36.4391287657104 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Acartiella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Eurytemora,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Monospilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Microcyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Eucyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Pleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Osphranticum,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Sida,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Disparalona,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Mesocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Graptoleberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Kurzia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Simocephalus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Moina,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Leydigia,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Acanthocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Macrocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Picripleuroxus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Arctodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Pseudochydorus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Scapholeberis,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Alonella,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Diacyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Eurycercus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Leptodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Skistodiaptomus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Paracyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Ergasilus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Tropocyclops,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Anchistropus,0 +2018,Sep,2018-09-05,Downstream,BN,MA-Ag,During,RYI,Acartia,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Sinocalanus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Pseudodiaptomus,17.3699206292111 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,NA,3230.8052370332575 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Bosmina,95.5345634606609 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Diaphanosoma,69.4796825168443 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Alona,52.1097618876332 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Chydorus,69.4796825168443 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Ceriodaphnia,173.699206292111 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Daphnia,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Diaptomus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Ilyocryptus,8.68496031460553 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Macrothrix,173.699206292111 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Limnoithona,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Camptocercus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Acartiella,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Eurytemora,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Monospilus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Microcyclops,43.4248015730277 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Eucyclops,17.3699206292111 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Pleuroxus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Osphranticum,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Sida,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Disparalona,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Mesocyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Graptoleberis,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Kurzia,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Simocephalus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Moina,34.7398412584221 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Leydigia,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Acanthocyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Macrocyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Picripleuroxus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Arctodiaptomus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Pseudochydorus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Scapholeberis,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Alonella,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Diacyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Eurycercus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Leptodiaptomus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Skistodiaptomus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Paracyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Ergasilus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Tropocyclops,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Anchistropus,0 +2018,Sep,2018-09-13,Upstream,BN,MA-Ag,During,STTD,Acartia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Sinocalanus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Pseudodiaptomus,5.81663661794626 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,NA,1132.7899813450335 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Bosmina,29.0831830897313 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Diaphanosoma,26.1748647807582 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Alona,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Chydorus,14.5415915448656 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Ceriodaphnia,8.72495492691939 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Daphnia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Diaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Ilyocryptus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Macrothrix,2.90831830897313 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Limnoithona,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Camptocercus,5.81663661794626 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Acartiella,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Eurytemora,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Monospilus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Microcyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Eucyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Pleuroxus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Osphranticum,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Sida,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Disparalona,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Mesocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Graptoleberis,5.81663661794626 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Kurzia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Simocephalus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Moina,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Leydigia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Acanthocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Macrocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Picripleuroxus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Arctodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Pseudochydorus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Scapholeberis,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Alonella,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Diacyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Eurycercus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Leptodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Skistodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Paracyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Ergasilus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Tropocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Anchistropus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,BL5,Acartia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Sinocalanus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Pseudodiaptomus,113.856278045576 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,NA,2192.929321684534 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Bosmina,53.5794249626238 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Diaphanosoma,6.69742812032798 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Alona,6.69742812032798 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Chydorus,13.394856240656 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Ceriodaphnia,26.7897124813119 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Daphnia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Diaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Ilyocryptus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Macrothrix,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Limnoithona,13.394856240656 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Camptocercus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Acartiella,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Eurytemora,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Monospilus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Microcyclops,13.394856240656 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Eucyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Pleuroxus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Osphranticum,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Sida,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Disparalona,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Mesocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Graptoleberis,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Kurzia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Simocephalus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Moina,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Leydigia,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Acanthocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Macrocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Picripleuroxus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Arctodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Pseudochydorus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Scapholeberis,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Alonella,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Diacyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Eurycercus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Leptodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Skistodiaptomus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Paracyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Ergasilus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Tropocyclops,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Anchistropus,0 +2018,Sep,2018-09-13,Downstream,BN,MA-Ag,During,RYI,Acartia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Sinocalanus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Pseudodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,NA,598.9886193858133 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Bosmina,292.189570432104 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Diaphanosoma,21.9142177824078 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Alona,138.79004595525 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Chydorus,102.266349651236 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Ceriodaphnia,43.8284355648156 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Daphnia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Diaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Ilyocryptus,36.523696304013 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Macrothrix,14.6094785216052 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Limnoithona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Camptocercus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Acartiella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Eurytemora,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Monospilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Microcyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Eucyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Pleuroxus,14.6094785216052 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Osphranticum,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Sida,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Disparalona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Mesocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Graptoleberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Kurzia,7.30473926080261 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Simocephalus,7.30473926080261 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Moina,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Leydigia,7.30473926080261 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Acanthocyclops,36.523696304013 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Macrocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Picripleuroxus,7.30473926080261 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Arctodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Pseudochydorus,7.30473926080261 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Scapholeberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Alonella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Diacyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Eurycercus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Leptodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Skistodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Paracyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Ergasilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Tropocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Anchistropus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,I80,Acartia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Sinocalanus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Pseudodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,NA,469.8614319443198 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Bosmina,117.46535798608 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Diaphanosoma,12.5855740699371 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Alona,113.270166629434 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Chydorus,58.73267899304 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Ceriodaphnia,344.005691244949 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Daphnia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Diaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Ilyocryptus,12.5855740699371 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Macrothrix,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Limnoithona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Camptocercus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Acartiella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Eurytemora,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Monospilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Microcyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Eucyclops,25.1711481398743 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Pleuroxus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Osphranticum,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Sida,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Disparalona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Mesocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Graptoleberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Kurzia,25.1711481398743 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Simocephalus,4.19519135664571 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Moina,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Leydigia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Acanthocyclops,12.5855740699371 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Macrocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Picripleuroxus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Arctodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Pseudochydorus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Scapholeberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Alonella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Diacyclops,4.19519135664571 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Eurycercus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Leptodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Skistodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Paracyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Ergasilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Tropocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Anchistropus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RCS,Acartia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Sinocalanus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Pseudodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,NA,312.4559741983934 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Bosmina,132.846332079306 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Diaphanosoma,12.9606177638347 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Alona,288.373745245322 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Chydorus,42.1220077324627 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Ceriodaphnia,38.8818532915041 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Daphnia,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Diaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Ilyocryptus,16.2007722047934 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Macrothrix,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Limnoithona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Camptocercus,3.24015444095867 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Acartiella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Eurytemora,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Monospilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Microcyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Eucyclops,3.24015444095867 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Pleuroxus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Osphranticum,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Sida,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Disparalona,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Mesocyclops,3.24015444095867 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Graptoleberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Kurzia,19.440926645752 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Simocephalus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Moina,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Leydigia,3.24015444095867 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Acanthocyclops,48.6023166143801 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Macrocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Picripleuroxus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Arctodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Pseudochydorus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Scapholeberis,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Alonella,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Diacyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Eurycercus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Leptodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Skistodiaptomus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Paracyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Ergasilus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Tropocyclops,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Anchistropus,0 +2018,Sep,2018-09-18,Upstream,BN,MA-Ag,During,RD22,Acartia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Sinocalanus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Pseudodiaptomus,2.53473580870578 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,NA,383.3486156404558 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Bosmina,250.938845061872 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Diaphanosoma,60.8336594089388 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Alona,86.1810174959966 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Chydorus,35.4863013218809 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Ceriodaphnia,98.8546965395255 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Daphnia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Diaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Ilyocryptus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Macrothrix,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Limnoithona,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Camptocercus,17.7431506609405 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Acartiella,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Eurytemora,12.6736790435289 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Monospilus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Microcyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Eucyclops,45.6252445567041 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Pleuroxus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Osphranticum,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Sida,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Disparalona,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Mesocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Graptoleberis,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Kurzia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Simocephalus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Moina,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Leydigia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Acanthocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Macrocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Picripleuroxus,5.06947161741156 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Arctodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Pseudochydorus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Scapholeberis,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Alonella,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Diacyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Eurycercus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Leptodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Skistodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Paracyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Ergasilus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Tropocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Anchistropus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,LIS,Acartia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Sinocalanus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Pseudodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,NA,1568.5041630617072 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Bosmina,236.389756508374 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Diaphanosoma,3.87524190997334 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Alona,7.75048381994667 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Chydorus,3.87524190997334 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Ceriodaphnia,23.25145145984 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Daphnia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Diaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Ilyocryptus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Macrothrix,50.3781448296534 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Limnoithona,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Camptocercus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Acartiella,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Eurytemora,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Monospilus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Microcyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Eucyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Pleuroxus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Osphranticum,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Sida,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Disparalona,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Mesocyclops,7.75048381994667 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Graptoleberis,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Kurzia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Simocephalus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Moina,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Leydigia,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Acanthocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Macrocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Picripleuroxus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Arctodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Pseudochydorus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Scapholeberis,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Alonella,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Diacyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Eurycercus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Leptodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Skistodiaptomus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Paracyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Ergasilus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Tropocyclops,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Anchistropus,0 +2018,Sep,2018-09-19,Upstream,BN,MA-Ag,During,STTD,Acartia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Sinocalanus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Pseudodiaptomus,12.0064148036183 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,NA,16778.96468805654 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Bosmina,198.105844259702 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Diaphanosoma,24.0128296072366 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Alona,24.0128296072366 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Chydorus,6.00320740180914 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Ceriodaphnia,18.0096222054274 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Daphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Diaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Ilyocryptus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Macrothrix,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Limnoithona,72.0384888217097 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Camptocercus,30.0160370090457 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Acartiella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Eurytemora,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Monospilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Microcyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Eucyclops,6.00320740180914 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Pleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Osphranticum,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Sida,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Disparalona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Mesocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Graptoleberis,54.0288666162823 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Kurzia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Simocephalus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Moina,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Leydigia,6.00320740180914 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Acanthocyclops,6.00320740180914 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Macrocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Picripleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Arctodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Pseudochydorus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Scapholeberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Alonella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Diacyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Eurycercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Leptodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Skistodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Paracyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Ergasilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Tropocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Anchistropus,6.00320740180914 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,BL5,Acartia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Sinocalanus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Pseudodiaptomus,458.281760014342 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,NA,4140.191428204096 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Bosmina,16.3672057147979 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Diaphanosoma,16.3672057147979 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Alona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Chydorus,16.3672057147979 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Ceriodaphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Daphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Diaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Ilyocryptus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Macrothrix,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Limnoithona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Camptocercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Acartiella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Eurytemora,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Monospilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Microcyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Eucyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Pleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Osphranticum,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Sida,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Disparalona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Mesocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Graptoleberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Kurzia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Simocephalus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Moina,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Leydigia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Acanthocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Macrocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Picripleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Arctodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Pseudochydorus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Scapholeberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Alonella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Diacyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Eurycercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Leptodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Skistodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Paracyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Ergasilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Tropocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Anchistropus,16.3672057147979 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,LIB,Acartia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Sinocalanus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Pseudodiaptomus,891.135033133202 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,NA,2632.077097862989 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Bosmina,12.9150004801913 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Diaphanosoma,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Alona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Chydorus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Ceriodaphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Daphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Diaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Ilyocryptus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Macrothrix,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Limnoithona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Camptocercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Acartiella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Eurytemora,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Monospilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Microcyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Eucyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Pleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Osphranticum,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Sida,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Disparalona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Mesocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Graptoleberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Kurzia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Simocephalus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Moina,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Leydigia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Acanthocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Macrocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Picripleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Arctodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Pseudochydorus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Scapholeberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Alonella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Diacyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Eurycercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Leptodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Skistodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Paracyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Ergasilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Tropocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Anchistropus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RVB,Acartia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Sinocalanus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Pseudodiaptomus,145.944309192969 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,NA,19157.622986730385 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Bosmina,116.755447354375 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Diaphanosoma,58.3777236771875 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Alona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Chydorus,58.3777236771875 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Ceriodaphnia,145.944309192969 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Daphnia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Diaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Ilyocryptus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Macrothrix,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Limnoithona,233.51089470875 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Camptocercus,29.1888618385938 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Acartiella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Eurytemora,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Monospilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Microcyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Eucyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Pleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Osphranticum,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Sida,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Disparalona,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Mesocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Graptoleberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Kurzia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Simocephalus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Moina,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Leydigia,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Acanthocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Macrocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Picripleuroxus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Arctodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Pseudochydorus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Scapholeberis,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Alonella,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Diacyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Eurycercus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Leptodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Skistodiaptomus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Paracyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Ergasilus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Tropocyclops,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Anchistropus,0 +2018,Sep,2018-09-19,Downstream,BN,MA-Ag,During,RYI,Acartia,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,6.43488615610951 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,NA,2733.3966416451817 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Bosmina,199.481470839395 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,6.43488615610951 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Alona,6.43488615610951 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Chydorus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,45.0442030927666 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,25.739544624438 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Limnoithona,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Microcyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Eucyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Simocephalus,6.43488615610951 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Sep,2018-09-27,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,70.1447231798623 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,NA,1390.3043850777835 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Bosmina,64.7489752429498 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,5.39574793691248 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Alona,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Chydorus,16.1872438107374 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,37.7702355583874 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Daphnia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Limnoithona,10.791495873825 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Camptocercus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Eurytemora,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Monospilus,5.39574793691248 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Microcyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Eucyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,10.791495873825 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Kurzia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Simocephalus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,10.791495873825 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Eurycercus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Paracyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,10.791495873825 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,460.818442263545 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,NA,2370.4221386132317 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Bosmina,19.2007684276477 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Alona,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Chydorus,124.80499477971 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,38.4015368552954 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Daphnia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Limnoithona,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Camptocercus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Monospilus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Microcyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Eucyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Simocephalus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Alonella,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Eurycercus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Sep,2018-09-27,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,32.0504843377332 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,NA,1628.1646043568487 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Bosmina,38.4605812052799 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,32.0504843377332 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Alona,19.2302906026399 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Chydorus,32.0504843377332 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,32.0504843377332 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Limnoithona,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Microcyclops,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Eucyclops,19.2302906026399 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,6.41009686754665 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,6.41009686754665 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,12.8201937350933 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Kurzia,6.41009686754665 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Simocephalus,76.9211624105598 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,25.6403874701866 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Oct,2018-10-04,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,48.6136332449143 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,NA,1610.7317148481611 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Bosmina,113.4318109048 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,54.0151480499048 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Alona,10.803029609981 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Chydorus,27.0075740249524 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,102.628781294819 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Daphnia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Limnoithona,5.40151480499048 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Camptocercus,16.2045444149714 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Eurytemora,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Monospilus,21.6060592199619 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Microcyclops,43.2121184399238 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Eucyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,10.803029609981 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Kurzia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Simocephalus,16.2045444149714 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Eurycercus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Paracyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,2431.72305018376 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,NA,5789.003609636913 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Bosmina,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Alona,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Chydorus,54.6454618018823 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,54.6454618018823 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Daphnia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,27.3227309009412 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Limnoithona,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Camptocercus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Monospilus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Microcyclops,27.3227309009412 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Eucyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Simocephalus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Alonella,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Eurycercus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Oct,2018-10-04,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Sinocalanus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Pseudodiaptomus,3.88513816196455 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,NA,208.2434054812998 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Bosmina,7.7702763239291 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Diaphanosoma,5.82770724294683 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Alona,79.6453323202733 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Chydorus,29.1385362147341 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Ceriodaphnia,21.368259890805 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Daphnia,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Diaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Ilyocryptus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Macrothrix,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Limnoithona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Camptocercus,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Acartiella,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Eurytemora,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Monospilus,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Microcyclops,15.5405526478582 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Eucyclops,21.368259890805 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Pleuroxus,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Osphranticum,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Sida,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Disparalona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Mesocyclops,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Graptoleberis,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Kurzia,7.7702763239291 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Simocephalus,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Moina,1.94256908098228 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Leydigia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Acanthocyclops,17.4831217288405 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Macrocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Picripleuroxus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Arctodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Pseudochydorus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Scapholeberis,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Alonella,31.0811052957164 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Diacyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Eurycercus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Leptodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Skistodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Paracyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Ergasilus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Tropocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Anchistropus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,I80,Acartia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Sinocalanus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Pseudodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,NA,6247.529365501101 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Bosmina,7175.23674228084 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Diaphanosoma,434.862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Alona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Chydorus,391.376549578955 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Ceriodaphnia,260.917699719303 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Daphnia,43.4862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Diaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Ilyocryptus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Macrothrix,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Limnoithona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Camptocercus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Acartiella,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Eurytemora,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Monospilus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Microcyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Eucyclops,43.4862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Pleuroxus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Osphranticum,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Sida,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Disparalona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Mesocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Graptoleberis,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Kurzia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Simocephalus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Moina,1261.10221530997 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Leydigia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Acanthocyclops,43.4862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Macrocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Picripleuroxus,43.4862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Arctodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Pseudochydorus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Scapholeberis,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Alonella,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Diacyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Eurycercus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Leptodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Skistodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Paracyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Ergasilus,43.4862832865506 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Tropocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Anchistropus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RCS,Acartia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Sinocalanus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Pseudodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,NA,166.32633559704007 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Bosmina,35.7782642513479 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Diaphanosoma,5.11118060733542 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Alona,19.5928589947858 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Chydorus,55.3711232461337 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Ceriodaphnia,9.37049778011493 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Daphnia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Diaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Ilyocryptus,1.70372686911181 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Macrothrix,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Limnoithona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Camptocercus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Acartiella,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Eurytemora,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Monospilus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Microcyclops,2.55559030366771 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Eucyclops,0.851863434555903 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Pleuroxus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Osphranticum,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Sida,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Disparalona,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Mesocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Graptoleberis,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Kurzia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Simocephalus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Moina,5.96304404189132 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Leydigia,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Acanthocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Macrocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Picripleuroxus,17.889132125674 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Arctodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Pseudochydorus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Scapholeberis,2.55559030366771 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Alonella,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Diacyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Eurycercus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Leptodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Skistodiaptomus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Paracyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Ergasilus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Tropocyclops,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Anchistropus,0 +2018,Oct,2018-10-09,Upstream,BN,MA-Ag,After,RD22,Acartia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Sinocalanus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Pseudodiaptomus,18.9910602386632 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,NA,1906.0570001628157 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Bosmina,31.6517670644386 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Diaphanosoma,6.33035341288772 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Alona,12.6607068257754 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Chydorus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Ceriodaphnia,44.312473890214 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Daphnia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Diaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Ilyocryptus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Macrothrix,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Limnoithona,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Camptocercus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Acartiella,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Eurytemora,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Monospilus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Microcyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Eucyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Pleuroxus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Osphranticum,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Sida,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Disparalona,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Mesocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Graptoleberis,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Kurzia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Simocephalus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Moina,6.33035341288772 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Leydigia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Acanthocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Macrocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Picripleuroxus,6.33035341288772 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Arctodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Pseudochydorus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Scapholeberis,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Alonella,6.33035341288772 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Diacyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Eurycercus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Leptodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Skistodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Paracyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Ergasilus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Tropocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Anchistropus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,LIS,Acartia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,3.10200729265272 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,NA,682.6802203291879 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Bosmina,6.20401458530545 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,6.20401458530545 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Alona,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Chydorus,6.20401458530545 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,18.6120437559163 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Limnoithona,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Microcyclops,9.30602187795817 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Eucyclops,3.10200729265272 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Simocephalus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,3.10200729265272 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Oct,2018-10-10,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,145.358084299127 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,NA,1741.989740410167 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Bosmina,16.1508982554585 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,37.6854292627365 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Alona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Chydorus,10.767265503639 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,123.823553291849 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Daphnia,5.3836327518195 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Limnoithona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Camptocercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Eurytemora,10.767265503639 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Monospilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Microcyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Eucyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,16.1508982554585 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Kurzia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Simocephalus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,5.3836327518195 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Eurycercus,5.3836327518195 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Paracyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Sinocalanus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Pseudodiaptomus,60.7156925250063 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,NA,1947.7208665561586 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Bosmina,121.431385050013 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Diaphanosoma,8.67367036071519 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Alona,34.6946814428608 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Chydorus,147.452396132158 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Ceriodaphnia,112.757714689297 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Daphnia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Diaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Ilyocryptus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Macrothrix,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Limnoithona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Camptocercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Acartiella,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Eurytemora,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Monospilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Microcyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Eucyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Pleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Osphranticum,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Sida,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Disparalona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Mesocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Graptoleberis,8.67367036071519 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Kurzia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Simocephalus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Moina,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Leydigia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Acanthocyclops,26.0210110821456 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Macrocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Picripleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Arctodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Pseudochydorus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Scapholeberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Alonella,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Diacyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Eurycercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Leptodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Skistodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Paracyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Ergasilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Tropocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Anchistropus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,LIB,Acartia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Sinocalanus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Pseudodiaptomus,618.862556560659 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,NA,1250.2176802568545 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Bosmina,14.7348227752538 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Diaphanosoma,7.36741138762689 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Alona,14.7348227752538 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Chydorus,14.7348227752538 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Ceriodaphnia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Daphnia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Diaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Ilyocryptus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Macrothrix,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Limnoithona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Camptocercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Acartiella,7.36741138762689 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Eurytemora,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Monospilus,7.36741138762689 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Microcyclops,7.36741138762689 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Eucyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Pleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Osphranticum,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Sida,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Disparalona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Mesocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Graptoleberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Kurzia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Simocephalus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Moina,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Leydigia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Acanthocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Macrocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Picripleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Arctodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Pseudochydorus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Scapholeberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Alonella,22.1022341628807 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Diacyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Eurycercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Leptodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Skistodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Paracyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Ergasilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Tropocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Anchistropus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RVB,Acartia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,512.821516668086 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,NA,1123.477879644464 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Bosmina,19.4742348101805 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,6.4914116033935 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Alona,25.965646413574 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Chydorus,51.931292827148 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,51.931292827148 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Daphnia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Limnoithona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Camptocercus,19.4742348101805 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Monospilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Microcyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Eucyclops,25.965646413574 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Simocephalus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Alonella,6.4914116033935 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Eurycercus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Oct,2018-10-10,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,1.3043634143145 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,2.60872682862899 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,NA,589.1995880089195 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Bosmina,16.9567243860884 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,3.91309024294349 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Alona,2.60872682862899 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Chydorus,14.3479975574595 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,20.8698146290319 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,2.60872682862899 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Limnoithona,3.91309024294349 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Microcyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Eucyclops,2.608726828629 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,3.91309024294349 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Simocephalus,6.52181707157248 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,7.82618048588698 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Oct,2018-10-18,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,43.5176586713172 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,NA,959.7567987238808 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Bosmina,31.0840419080837 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,27.9756377172754 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Alona,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Chydorus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,68.3848921977842 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Daphnia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Limnoithona,6.21680838161675 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Camptocercus,3.10840419080837 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Eurytemora,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Monospilus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Microcyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Eucyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Kurzia,3.10840419080837 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Simocephalus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Eurycercus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Paracyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,857.036971164351 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,NA,2027.6240537302945 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Bosmina,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Alona,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Chydorus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,20.9033407601061 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Daphnia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Limnoithona,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Camptocercus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Monospilus,10.4516703800531 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Microcyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Eucyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,10.4516703800531 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Simocephalus,10.4516703800531 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Alonella,10.4516703800531 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Eurycercus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Oct,2018-10-18,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Sinocalanus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Pseudodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,NA,2431.3501506676444 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Bosmina,65.4909131492968 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Diaphanosoma,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Alona,163.727282873242 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Chydorus,409.318207183105 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Ceriodaphnia,32.7454565746484 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Daphnia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Diaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Ilyocryptus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Macrothrix,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Limnoithona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Camptocercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Acartiella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Eurytemora,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Monospilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Microcyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Eucyclops,8.18636414366209 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Pleuroxus,57.3045490056347 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Osphranticum,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Sida,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Disparalona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Mesocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Graptoleberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Kurzia,8.18636414366209 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Simocephalus,8.18636414366209 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Moina,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Leydigia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Acanthocyclops,24.5590924309863 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Macrocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Picripleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Arctodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Pseudochydorus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Scapholeberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Alonella,16.3727282873242 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Diacyclops,130.981826298594 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Eurycercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Leptodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Skistodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Paracyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Ergasilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Tropocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Anchistropus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,I80,Acartia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Sinocalanus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Pseudodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,NA,849.6500478368163 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Bosmina,3.11098632651122 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Diaphanosoma,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Alona,7.25896809519284 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Chydorus,1.03699544217041 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Ceriodaphnia,2.07399088434081 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Daphnia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Diaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Ilyocryptus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Macrothrix,1.03699544217041 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Limnoithona,2.07399088434081 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Camptocercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Acartiella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Eurytemora,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Monospilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Microcyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Eucyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Pleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Osphranticum,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Sida,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Disparalona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Mesocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Graptoleberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Kurzia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Simocephalus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Moina,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Leydigia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Acanthocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Macrocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Picripleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Arctodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Pseudochydorus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Scapholeberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Alonella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Diacyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Eurycercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Leptodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Skistodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Paracyclops,1.03699544217041 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Ergasilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Tropocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Anchistropus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,LIS,Acartia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Sinocalanus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Pseudodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,NA,12636.805733452335 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Bosmina,26806.6728210497 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Diaphanosoma,262.810517853428 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Alona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Chydorus,131.405258926714 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Ceriodaphnia,985.539441950355 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Daphnia,131.405258926714 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Diaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Ilyocryptus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Macrothrix,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Limnoithona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Camptocercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Acartiella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Eurytemora,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Monospilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Microcyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Eucyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Pleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Osphranticum,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Sida,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Disparalona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Mesocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Graptoleberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Kurzia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Simocephalus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Moina,131.405258926714 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Leydigia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Acanthocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Macrocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Picripleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Arctodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Pseudochydorus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Scapholeberis,197.107888390071 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Alonella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Diacyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Eurycercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Leptodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Skistodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Paracyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Ergasilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Tropocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Anchistropus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RCS,Acartia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Sinocalanus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Pseudodiaptomus,4.36517002559415 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,NA,323.3863460627664 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Bosmina,702.792374120659 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Diaphanosoma,13.0955100767825 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Alona,48.0168702815357 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Chydorus,126.58993074223 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Ceriodaphnia,13.0955100767825 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Daphnia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Diaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Ilyocryptus,4.36517002559415 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Macrothrix,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Limnoithona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Camptocercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Acartiella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Eurytemora,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Monospilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Microcyclops,13.0955100767825 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Eucyclops,4.36517002559415 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Pleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Osphranticum,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Sida,48.0168702815357 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Disparalona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Mesocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Graptoleberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Kurzia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Simocephalus,8.73034005118831 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Moina,8.73034005118831 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Leydigia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Acanthocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Macrocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Picripleuroxus,43.6517002559415 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Arctodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Pseudochydorus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Scapholeberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Alonella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Diacyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Eurycercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Leptodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Skistodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Paracyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Ergasilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Tropocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Anchistropus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,RD22,Acartia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,NA,1172.2208793790746 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Bosmina,6.99292172850973 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Alona,11.6548695475162 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Chydorus,11.6548695475162 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,20.9787651855292 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Limnoithona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Eurytemora,4.66194781900648 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Monospilus,2.33097390950324 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Microcyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Eucyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,2.33097390950324 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Simocephalus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Diacyclops,11.6548695475162 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Oct,2018-10-25,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,17.7188474411837 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,NA,809.7513280620951 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Bosmina,7.08753897647348 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Alona,14.175077952947 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Chydorus,24.8063864176572 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,67.3316202764981 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Daphnia,3.54376948823674 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Limnoithona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Camptocercus,7.08753897647348 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Eurytemora,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Monospilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Microcyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Eucyclops,3.54376948823674 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,28.3501559058939 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Kurzia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Simocephalus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,3.54376948823674 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Eurycercus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Paracyclops,10.6313084647102 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Sinocalanus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Pseudodiaptomus,8.02533769559025 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,NA,1876.3239532289997 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Bosmina,20.0633442389756 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Diaphanosoma,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Alona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Chydorus,28.0886819345659 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Ceriodaphnia,32.101350782361 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Daphnia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Diaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Ilyocryptus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Macrothrix,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Limnoithona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Camptocercus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Acartiella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Eurytemora,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Monospilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Microcyclops,4.01266884779513 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Eucyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Pleuroxus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Osphranticum,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Sida,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Disparalona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Mesocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Graptoleberis,4.01266884779513 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Kurzia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Simocephalus,4.01266884779513 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Moina,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Leydigia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Acanthocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Macrocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Picripleuroxus,8.02533769559025 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Arctodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Pseudochydorus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Scapholeberis,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Alonella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Diacyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Eurycercus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Leptodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Skistodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Paracyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Ergasilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Tropocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Anchistropus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,LIB,Acartia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Sinocalanus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Pseudodiaptomus,33.8103448882041 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,NA,427.1910243017534 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Bosmina,5.63505748136735 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Diaphanosoma,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Alona,9.39176246894558 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Chydorus,28.1752874068367 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Ceriodaphnia,16.905172444102 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Daphnia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Diaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Ilyocryptus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Macrothrix,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Limnoithona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Camptocercus,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Acartiella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Eurytemora,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Monospilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Microcyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Eucyclops,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Pleuroxus,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Osphranticum,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Sida,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Disparalona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Mesocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Graptoleberis,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Kurzia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Simocephalus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Moina,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Leydigia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Acanthocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Macrocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Picripleuroxus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Arctodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Pseudochydorus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Scapholeberis,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Alonella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Diacyclops,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Eurycercus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Leptodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Skistodiaptomus,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Paracyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Ergasilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Tropocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Anchistropus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RVB,Acartia,1.87835249378912 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,2.55264267932668 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,NA,975.3931304671626 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Bosmina,33.1843548312469 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Alona,7.65792803798005 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Chydorus,17.8684987552868 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,28.0790694725935 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Daphnia,2.55264267932668 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Limnoithona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Camptocercus,15.3158560759601 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Monospilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Microcyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Eucyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,2.55264267932668 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Simocephalus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,2.55264267932668 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Alonella,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Eurycercus,5.10528535865337 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Oct,2018-10-25,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,NA,1532.4873676935447 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Bosmina,18.8090208775946 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,25.0786945034595 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Alona,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Chydorus,112.854125265568 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,56.4270626327839 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,12.5393472517298 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Limnoithona,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Camptocercus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Microcyclops,100.314778013838 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Eucyclops,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Disparalona,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,25.0786945034595 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Simocephalus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Leydigia,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,6.26967362586488 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,12.5393472517298 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Nov,2018-11-01,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Sinocalanus,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Pseudodiaptomus,158.4937631820493 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,NA,1254.9138219046247 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Bosmina,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Diaphanosoma,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Alona,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Chydorus,52.8312543940164 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Ceriodaphnia,452.839323377284 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Daphnia,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Diaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Ilyocryptus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Macrothrix,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Limnoithona,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Camptocercus,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Acartiella,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Eurytemora,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Monospilus,15.0946441125761 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Microcyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Eucyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Pleuroxus,22.6419661688642 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Osphranticum,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Sida,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Disparalona,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Mesocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Graptoleberis,15.0946441125761 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Kurzia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Simocephalus,75.4732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Moina,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Leydigia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Acanthocyclops,7.54732205628806 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Macrocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Picripleuroxus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Arctodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Pseudochydorus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Scapholeberis,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Alonella,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Diacyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Eurycercus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Leptodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Skistodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Paracyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Ergasilus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Tropocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Anchistropus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,BL5,Acartia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Sinocalanus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Pseudodiaptomus,160.833880004329 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,NA,601.2123609685641 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Bosmina,26.8056466673882 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Diaphanosoma,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Alona,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Chydorus,16.7535291671176 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Ceriodaphnia,36.8577641676587 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Daphnia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Diaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Ilyocryptus,3.35070583342352 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Macrothrix,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Limnoithona,3.35070583342352 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Camptocercus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Acartiella,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Eurytemora,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Monospilus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Microcyclops,16.7535291671176 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Eucyclops,3.35070583342352 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Pleuroxus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Osphranticum,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Sida,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Disparalona,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Mesocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Graptoleberis,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Kurzia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Simocephalus,23.4549408339646 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Moina,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Leydigia,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Acanthocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Macrocyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Picripleuroxus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Arctodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Pseudochydorus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Scapholeberis,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Alonella,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Diacyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Eurycercus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Leptodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Skistodiaptomus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Paracyclops,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Ergasilus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Tropocyclops,3.35070583342352 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Anchistropus,0 +2018,Nov,2018-11-01,Downstream,BN,MA-Ag,After,RYI,Acartia,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Sinocalanus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Pseudodiaptomus,7.63295185281401 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,NA,790.7738119515305 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Bosmina,19.082379632035 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Diaphanosoma,3.816475926407 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Alona,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Chydorus,125.943705571431 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Ceriodaphnia,61.0636148225121 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Daphnia,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Diaptomus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Ilyocryptus,7.63295185281401 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Macrothrix,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Limnoithona,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Camptocercus,3.816475926407 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Acartiella,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Eurytemora,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Monospilus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Microcyclops,26.715331484849 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Eucyclops,19.082379632035 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Pleuroxus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Osphranticum,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Sida,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Disparalona,3.816475926407 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Mesocyclops,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Graptoleberis,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Kurzia,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Simocephalus,15.265903705628 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Moina,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Leydigia,3.816475926407 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Acanthocyclops,3.816475926407 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Macrocyclops,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Picripleuroxus,19.082379632035 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Arctodiaptomus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Pseudochydorus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Scapholeberis,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Alonella,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Diacyclops,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Eurycercus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Leptodiaptomus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Skistodiaptomus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Paracyclops,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Ergasilus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Tropocyclops,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Anchistropus,0 +2018,Nov,2018-11-08,Upstream,BN,MA-Ag,After,STTD,Acartia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Sinocalanus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Pseudodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,NA,13792.948007217332 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Bosmina,2858.90195058686 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Diaphanosoma,5115.92980631334 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Alona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Chydorus,225.702785572647 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Ceriodaphnia,677.108356717942 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Daphnia,150.468523715098 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Diaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Ilyocryptus,75.2342618575491 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Macrothrix,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Limnoithona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Camptocercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Acartiella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Eurytemora,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Monospilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Microcyclops,75.2342618575491 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Eucyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Pleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Osphranticum,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Sida,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Disparalona,601.874094860393 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Mesocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Graptoleberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Kurzia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Simocephalus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Moina,3761.71309287745 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Leydigia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Acanthocyclops,150.468523715098 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Macrocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Picripleuroxus,225.702785572647 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Arctodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Pseudochydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Scapholeberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Alonella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Diacyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Eurycercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Leptodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Skistodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Paracyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Ergasilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Tropocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Anchistropus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,I80,Acartia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Sinocalanus,107.958107462255 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Pseudodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,NA,22262.83929102077 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Bosmina,755.706752235788 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Diaphanosoma,9932.14588652749 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Alona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Chydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Ceriodaphnia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Daphnia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Diaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Ilyocryptus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Macrothrix,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Limnoithona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Camptocercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Acartiella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Eurytemora,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Monospilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Microcyclops,107.958107462255 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Eucyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Pleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Osphranticum,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Sida,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Disparalona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Mesocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Graptoleberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Kurzia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Simocephalus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Moina,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Leydigia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Acanthocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Macrocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Picripleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Arctodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Pseudochydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Scapholeberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Alonella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Diacyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Eurycercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Leptodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Skistodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Paracyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Ergasilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Tropocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Anchistropus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,LIS,Acartia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Sinocalanus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Pseudodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,NA,396.5290796862731 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Bosmina,41.6485685447289 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Diaphanosoma,46.8546396128201 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Alona,32.5379441755695 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Chydorus,31.2364264085467 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Ceriodaphnia,28.6333908745011 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Daphnia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Diaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Ilyocryptus,6.5075888351139 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Macrothrix,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Limnoithona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Camptocercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Acartiella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Eurytemora,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Monospilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Microcyclops,2.60303553404556 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Eucyclops,1.30151776702278 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Pleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Osphranticum,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Sida,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Disparalona,2.60303553404556 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Mesocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Graptoleberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Kurzia,3.90455330106834 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Simocephalus,9.11062436915945 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Moina,20.8242842723645 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Leydigia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Acanthocyclops,1.30151776702278 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Macrocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Picripleuroxus,2.60303553404556 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Arctodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Pseudochydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Scapholeberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Alonella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Diacyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Eurycercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Leptodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Skistodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Paracyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Ergasilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Tropocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Anchistropus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RCS,Acartia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Sinocalanus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Pseudodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,NA,4700.8758515069285 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Bosmina,90.1650119731059 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Diaphanosoma,573.777348919765 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Alona,8.19681927028235 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Chydorus,16.3936385405647 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Ceriodaphnia,311.479132270729 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Daphnia,229.510939567906 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Diaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Ilyocryptus,180.330023946212 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Macrothrix,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Limnoithona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Camptocercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Acartiella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Eurytemora,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Monospilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Microcyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Eucyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Pleuroxus,57.3777348919765 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Osphranticum,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Sida,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Disparalona,57.3777348919765 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Mesocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Graptoleberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Kurzia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Simocephalus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Moina,254.101397378753 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Leydigia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Acanthocyclops,16.3936385405647 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Macrocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Picripleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Arctodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Pseudochydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Scapholeberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Alonella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Diacyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Eurycercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Leptodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Skistodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Paracyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Ergasilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Tropocyclops,40.9840963514118 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Anchistropus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RD22,Acartia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Sinocalanus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Pseudodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,NA,1076.140621480098 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Bosmina,20.7756867707314 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Diaphanosoma,15.5817650780486 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Alona,197.369024321949 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Chydorus,176.593337551217 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Ceriodaphnia,150.623729087803 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Daphnia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Diaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Ilyocryptus,10.3878433853657 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Macrothrix,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Limnoithona,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Camptocercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Acartiella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Eurytemora,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Monospilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Microcyclops,51.9392169268285 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Eucyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Pleuroxus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Osphranticum,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Sida,51.9392169268285 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Disparalona,161.011572473169 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Mesocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Graptoleberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Kurzia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Simocephalus,10.3878433853657 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Moina,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Leydigia,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Acanthocyclops,5.19392169268285 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Macrocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Picripleuroxus,5.19392169268285 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Arctodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Pseudochydorus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Scapholeberis,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Alonella,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Diacyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Eurycercus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Leptodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Skistodiaptomus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Paracyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Ergasilus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Tropocyclops,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Anchistropus,0 +2019,Aug,2019-08-06,Upstream,W,MA-Ag,Before,RMB,Acartia,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Sinocalanus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Pseudodiaptomus,3.6202807188779502 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,NA,147.97897438413622 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Bosmina,4.0728158087377 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Diaphanosoma,15.838728145091 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Alona,3.16774562901821 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Chydorus,0.905070179719488 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Ceriodaphnia,2.26267544929872 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Daphnia,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Diaptomus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Ilyocryptus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Macrothrix,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Limnoithona,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Camptocercus,5.43042107831693 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Acartiella,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Eurytemora,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Monospilus,0.452535089859744 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Microcyclops,2.26267544929872 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Eucyclops,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Pleuroxus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Osphranticum,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Sida,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Disparalona,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Mesocyclops,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Graptoleberis,1.81014035943898 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Kurzia,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Simocephalus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Moina,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Leydigia,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Acanthocyclops,0.905070179719488 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Macrocyclops,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Picripleuroxus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Arctodiaptomus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Pseudochydorus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Scapholeberis,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Alonella,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Diacyclops,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Eurycercus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Leptodiaptomus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Skistodiaptomus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Paracyclops,0.905070179719488 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Ergasilus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Tropocyclops,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Anchistropus,0 +2019,Aug,2019-08-07,Upstream,W,MA-Ag,Before,STTD,Acartia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Sinocalanus,2.79322554264368 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Pseudodiaptomus,2.79322554264368 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,NA,254.9594203646425 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Bosmina,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Diaphanosoma,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Alona,1.86215036176246 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Chydorus,6.5175262661686 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Ceriodaphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Daphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Diaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Ilyocryptus,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Macrothrix,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Limnoithona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Camptocercus,4.65537590440614 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Acartiella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Eurytemora,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Monospilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Microcyclops,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Eucyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Pleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Osphranticum,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Sida,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Disparalona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Mesocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Graptoleberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Kurzia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Simocephalus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Moina,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Leydigia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Acanthocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Macrocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Picripleuroxus,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Arctodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Pseudochydorus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Scapholeberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Alonella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Diacyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Eurycercus,0.931075180881228 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Leptodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Skistodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Paracyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Ergasilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Tropocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Anchistropus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,BL5,Acartia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Sinocalanus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Pseudodiaptomus,156.862510202745 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,NA,1567.7077774063814 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Bosmina,5.80972260010168 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Diaphanosoma,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Alona,11.6194452002034 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Chydorus,11.6194452002034 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Ceriodaphnia,5.80972260010168 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Daphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Diaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Ilyocryptus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Macrothrix,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Limnoithona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Camptocercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Acartiella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Eurytemora,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Monospilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Microcyclops,11.6194452002034 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Eucyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Pleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Osphranticum,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Sida,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Disparalona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Mesocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Graptoleberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Kurzia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Simocephalus,5.80972260010168 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Moina,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Leydigia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Acanthocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Macrocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Picripleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Arctodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Pseudochydorus,5.80972260010168 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Scapholeberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Alonella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Diacyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Eurycercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Leptodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Skistodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Paracyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Ergasilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Tropocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Anchistropus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,LIB,Acartia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Sinocalanus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Pseudodiaptomus,775.29299805686 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,NA,1993.44203913037 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Bosmina,14.6281697746577 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Diaphanosoma,7.31408488732887 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Alona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Chydorus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Ceriodaphnia,7.31408488732887 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Daphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Diaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Ilyocryptus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Macrothrix,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Limnoithona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Camptocercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Acartiella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Eurytemora,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Monospilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Microcyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Eucyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Pleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Osphranticum,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Sida,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Disparalona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Mesocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Graptoleberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Kurzia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Simocephalus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Moina,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Leydigia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Acanthocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Macrocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Picripleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Arctodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Pseudochydorus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Scapholeberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Alonella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Diacyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Eurycercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Leptodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Skistodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Paracyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Ergasilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Tropocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Anchistropus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RVB,Acartia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Sinocalanus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Pseudodiaptomus,418.642466173191 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,NA,3316.3974549465443 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Bosmina,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Diaphanosoma,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Alona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Chydorus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Ceriodaphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Daphnia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Diaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Ilyocryptus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Macrothrix,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Limnoithona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Camptocercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Acartiella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Eurytemora,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Monospilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Microcyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Eucyclops,13.5045956830062 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Pleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Osphranticum,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Sida,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Disparalona,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Mesocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Graptoleberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Kurzia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Simocephalus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Moina,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Leydigia,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Acanthocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Macrocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Picripleuroxus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Arctodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Pseudochydorus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Scapholeberis,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Alonella,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Diacyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Eurycercus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Leptodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Skistodiaptomus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Paracyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Ergasilus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Tropocyclops,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Anchistropus,0 +2019,Aug,2019-08-07,Downstream,W,MA-Ag,Before,RYI,Acartia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Sinocalanus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Pseudodiaptomus,23.1742534343061 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,NA,4600.089306709763 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Bosmina,556.182082423347 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Diaphanosoma,1668.54624727004 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Alona,115.871267171531 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Chydorus,46.3485068686123 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Ceriodaphnia,324.439548080286 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Daphnia,139.045520605837 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Diaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Ilyocryptus,92.6970137372245 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Macrothrix,162.219774040143 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Limnoithona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Camptocercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Acartiella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Eurytemora,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Monospilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Microcyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Eucyclops,23.1742534343061 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Pleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Osphranticum,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Sida,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Disparalona,46.3485068686123 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Mesocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Graptoleberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Kurzia,23.1742534343061 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Simocephalus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Moina,301.26529464598 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Leydigia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Acanthocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Macrocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Picripleuroxus,23.1742534343061 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Arctodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Pseudochydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Scapholeberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Alonella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Diacyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Eurycercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Leptodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Skistodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Paracyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Ergasilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Tropocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Anchistropus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,I80,Acartia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Sinocalanus,2.64413524847818 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Pseudodiaptomus,5.28827049695636 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,NA,1916.9980551466822 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Bosmina,132.206762423909 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Diaphanosoma,222.107360872167 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Alona,10.5765409939127 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Chydorus,2.64413524847818 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Ceriodaphnia,5.28827049695636 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Daphnia,10.5765409939127 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Diaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Ilyocryptus,7.93240574543454 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Macrothrix,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Limnoithona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Camptocercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Acartiella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Eurytemora,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Monospilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Microcyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Eucyclops,5.28827049695636 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Pleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Osphranticum,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Sida,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Disparalona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Mesocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Graptoleberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Kurzia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Simocephalus,2.64413524847818 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Moina,5.28827049695636 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Leydigia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Acanthocyclops,7.93240574543454 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Macrocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Picripleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Arctodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Pseudochydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Scapholeberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Alonella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Diacyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Eurycercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Leptodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Skistodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Paracyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Ergasilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Tropocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Anchistropus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,LIS,Acartia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Sinocalanus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Pseudodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,NA,45.60163787367086 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Bosmina,26.6396626284176 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Diaphanosoma,7.78697830676823 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Alona,2.86888674459882 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Chydorus,4.91809156216941 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Ceriodaphnia,27.0495035919318 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Daphnia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Diaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Ilyocryptus,3.27872770811294 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Macrothrix,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Limnoithona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Camptocercus,0.409840963514118 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Acartiella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Eurytemora,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Monospilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Microcyclops,1.22952289054235 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Eucyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Pleuroxus,4.50825059865529 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Osphranticum,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Sida,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Disparalona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Mesocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Graptoleberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Kurzia,3.27872770811294 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Simocephalus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Moina,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Leydigia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Acanthocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Macrocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Picripleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Arctodiaptomus,0.409840963514118 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Pseudochydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Scapholeberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Alonella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Diacyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Eurycercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Leptodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Skistodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Paracyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Ergasilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Tropocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Anchistropus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RCS,Acartia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Sinocalanus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Pseudodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,NA,2005.9032120109723 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Bosmina,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Diaphanosoma,308.763731655748 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Alona,9.54939376254891 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Chydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Ceriodaphnia,9.54939376254891 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Daphnia,76.3951501003913 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Diaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Ilyocryptus,267.383025351369 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Macrothrix,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Limnoithona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Camptocercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Acartiella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Eurytemora,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Monospilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Microcyclops,22.2819187792808 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Eucyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Pleuroxus,28.6481812876467 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Osphranticum,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Sida,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Disparalona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Mesocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Graptoleberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Kurzia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Simocephalus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Moina,9.54939376254891 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Leydigia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Acanthocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Macrocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Picripleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Arctodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Pseudochydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Scapholeberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Alonella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Diacyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Eurycercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Leptodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Skistodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Paracyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Ergasilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Tropocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Anchistropus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RD22,Acartia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Sinocalanus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Pseudodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,NA,297.5652037615108 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Bosmina,86.7898510971072 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Diaphanosoma,15.498187695912 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Alona,43.3949255485536 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Chydorus,21.6974627742768 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Ceriodaphnia,223.173902821133 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Daphnia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Diaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Ilyocryptus,55.7934757052832 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Macrothrix,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Limnoithona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Camptocercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Acartiella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Eurytemora,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Monospilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Microcyclops,15.498187695912 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Eucyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Pleuroxus,24.7971003134592 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Osphranticum,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Sida,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Disparalona,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Mesocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Graptoleberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Kurzia,6.1992750783648 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Simocephalus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Moina,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Leydigia,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Acanthocyclops,6.1992750783648 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Macrocyclops,9.29891261754721 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Picripleuroxus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Arctodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Pseudochydorus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Scapholeberis,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Alonella,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Diacyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Eurycercus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Leptodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Skistodiaptomus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Paracyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Ergasilus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Tropocyclops,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Anchistropus,0 +2019,Aug,2019-08-20,Upstream,W,MA-Ag,Before,RMB,Acartia,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Sinocalanus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Pseudodiaptomus,28.4146519731126 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,NA,5790.906072120354 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Bosmina,14.2073259865563 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Diaphanosoma,184.695237825232 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Alona,14.2073259865563 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Chydorus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Ceriodaphnia,14.2073259865563 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Daphnia,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Diaptomus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Ilyocryptus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Macrothrix,14.2073259865563 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Limnoithona,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Camptocercus,42.6219779596689 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Acartiella,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Eurytemora,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Monospilus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Microcyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Eucyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Pleuroxus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Osphranticum,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Sida,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Disparalona,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Mesocyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Graptoleberis,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Kurzia,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Simocephalus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Moina,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Leydigia,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Acanthocyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Macrocyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Picripleuroxus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Arctodiaptomus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Pseudochydorus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Scapholeberis,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Alonella,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Diacyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Eurycercus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Leptodiaptomus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Skistodiaptomus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Paracyclops,14.2073259865563 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Ergasilus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Tropocyclops,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Anchistropus,0 +2019,Aug,2019-08-21,Upstream,W,MA-Ag,Before,STTD,Acartia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Sinocalanus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Pseudodiaptomus,17.0676044006106 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,NA,932.5739044493637 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Bosmina,25.6014066009159 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Diaphanosoma,25.6014066009159 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Alona,4.26690110015265 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Chydorus,72.5373187025951 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Ceriodaphnia,4.26690110015265 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Daphnia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Diaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Ilyocryptus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Macrothrix,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Limnoithona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Camptocercus,64.0035165022898 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Acartiella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Eurytemora,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Monospilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Microcyclops,4.26690110015265 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Eucyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Pleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Osphranticum,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Sida,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Disparalona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Mesocyclops,4.26690110015265 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Graptoleberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Kurzia,4.26690110015265 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Simocephalus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Moina,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Leydigia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Acanthocyclops,8.5338022003053 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Macrocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Picripleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Arctodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Pseudochydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Scapholeberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Alonella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Diacyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Eurycercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Leptodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Skistodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Paracyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Ergasilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Tropocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Anchistropus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,BL5,Acartia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Sinocalanus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Pseudodiaptomus,226.52151136345 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,NA,3064.0809770429332 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Bosmina,75.5071704544833 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Diaphanosoma,15.1014340908967 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Alona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Chydorus,15.1014340908967 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Ceriodaphnia,45.30430227269 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Daphnia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Diaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Ilyocryptus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Macrothrix,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Limnoithona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Camptocercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Acartiella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Eurytemora,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Monospilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Microcyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Eucyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Pleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Osphranticum,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Sida,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Disparalona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Mesocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Graptoleberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Kurzia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Simocephalus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Moina,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Leydigia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Acanthocyclops,15.1014340908967 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Macrocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Picripleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Arctodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Pseudochydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Scapholeberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Alonella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Diacyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Eurycercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Leptodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Skistodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Paracyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Ergasilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Tropocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Anchistropus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,LIB,Acartia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Sinocalanus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Pseudodiaptomus,30.2905053536124 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,NA,963.9220493980221 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Bosmina,18.9315658460078 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Diaphanosoma,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Alona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Chydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Ceriodaphnia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Daphnia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Diaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Ilyocryptus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Macrothrix,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Limnoithona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Camptocercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Acartiella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Eurytemora,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Monospilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Microcyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Eucyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Pleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Osphranticum,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Sida,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Disparalona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Mesocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Graptoleberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Kurzia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Simocephalus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Moina,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Leydigia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Acanthocyclops,3.78631316920156 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Macrocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Picripleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Arctodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Pseudochydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Scapholeberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Alonella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Diacyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Eurycercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Leptodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Skistodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Paracyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Ergasilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Tropocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Anchistropus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RVB,Acartia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Sinocalanus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Pseudodiaptomus,39.7410103786236 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,NA,1284.0297212976322 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Bosmina,48.5723460183178 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Diaphanosoma,4.41566781984707 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Alona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Chydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Ceriodaphnia,13.2470034595412 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Daphnia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Diaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Ilyocryptus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Macrothrix,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Limnoithona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Camptocercus,4.41566781984707 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Acartiella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Eurytemora,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Monospilus,4.41566781984707 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Microcyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Eucyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Pleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Osphranticum,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Sida,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Disparalona,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Mesocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Graptoleberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Kurzia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Simocephalus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Moina,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Leydigia,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Acanthocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Macrocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Picripleuroxus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Arctodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Pseudochydorus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Scapholeberis,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Alonella,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Diacyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Eurycercus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Leptodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Skistodiaptomus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Paracyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Ergasilus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Tropocyclops,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Anchistropus,0 +2019,Aug,2019-08-21,Downstream,W,MA-Ag,Before,RYI,Acartia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Sinocalanus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Pseudodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,NA,525.8729238343534 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Bosmina,99.5971446655972 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Diaphanosoma,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Alona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Chydorus,47.8066294394866 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Ceriodaphnia,107.564916238845 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Daphnia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Diaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Ilyocryptus,51.7905152261105 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Macrothrix,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Limnoithona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Camptocercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Acartiella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Eurytemora,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Monospilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Microcyclops,15.9355431464955 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Eucyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Pleuroxus,19.9194289331194 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Osphranticum,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Sida,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Disparalona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Mesocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Graptoleberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Kurzia,7.96777157324777 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Simocephalus,15.9355431464955 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Moina,15.9355431464955 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Leydigia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Acanthocyclops,3.98388578662389 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Macrocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Picripleuroxus,7.96777157324777 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Arctodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Pseudochydorus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Scapholeberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Alonella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Diacyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Eurycercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Leptodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Skistodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Paracyclops,3.98388578662389 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Ergasilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Tropocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Anchistropus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,I80,Acartia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Sinocalanus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Pseudodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,NA,689.2346433423124 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Bosmina,153.189849536059 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Diaphanosoma,119.679569950046 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Alona,81.3821075660311 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Chydorus,19.1487311920073 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Ceriodaphnia,138.828301142053 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Daphnia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Diaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Ilyocryptus,124.466752748048 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Macrothrix,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Limnoithona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Camptocercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Acartiella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Eurytemora,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Monospilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Microcyclops,19.1487311920073 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Eucyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Pleuroxus,52.6590107780201 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Osphranticum,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Sida,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Disparalona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Mesocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Graptoleberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Kurzia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Simocephalus,4.78718279800183 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Moina,4.78718279800183 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Leydigia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Acanthocyclops,9.57436559600366 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Macrocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Picripleuroxus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Arctodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Pseudochydorus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Scapholeberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Alonella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Diacyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Eurycercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Leptodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Skistodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Paracyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Ergasilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Tropocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Anchistropus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,LIS,Acartia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Sinocalanus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Pseudodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,NA,326.5320271388325 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Bosmina,17.3687248478102 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Diaphanosoma,17.3687248478102 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Alona,52.1061745434306 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Chydorus,20.8424698173722 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Ceriodaphnia,264.004617686715 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Daphnia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Diaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Ilyocryptus,55.5799195129926 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Macrothrix,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Limnoithona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Camptocercus,17.3687248478102 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Acartiella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Eurytemora,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Monospilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Microcyclops,31.2637047260583 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Eucyclops,3.47374496956204 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Pleuroxus,17.3687248478102 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Osphranticum,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Sida,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Disparalona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Mesocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Graptoleberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Kurzia,10.4212349086861 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Simocephalus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Moina,97.2648591477371 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Leydigia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Acanthocyclops,17.3687248478102 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Macrocyclops,10.4212349086861 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Picripleuroxus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Arctodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Pseudochydorus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Scapholeberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Alonella,6.94748993912408 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Diacyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Eurycercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Leptodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Skistodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Paracyclops,6.94748993912408 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Ergasilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Tropocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Anchistropus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RCS,Acartia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Sinocalanus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Pseudodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,NA,240.69988447391398 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Bosmina,59.8425127145089 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Diaphanosoma,15.9580033905357 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Alona,19.9475042381696 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Chydorus,67.8215144097768 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Ceriodaphnia,207.454044076964 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Daphnia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Diaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Ilyocryptus,47.8740101716071 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Macrothrix,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Limnoithona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Camptocercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Acartiella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Eurytemora,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Monospilus,3.98950084763393 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Microcyclops,75.8005161050446 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Eucyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Pleuroxus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Osphranticum,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Sida,3.98950084763393 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Disparalona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Mesocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Graptoleberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Kurzia,103.727022038482 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Simocephalus,19.9475042381696 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Moina,15.9580033905357 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Leydigia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Acanthocyclops,3.98950084763393 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Macrocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Picripleuroxus,3.98950084763393 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Arctodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Pseudochydorus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Scapholeberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Alonella,3.98950084763393 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Diacyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Eurycercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Leptodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Skistodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Paracyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Ergasilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Tropocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Anchistropus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RD22,Acartia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Sinocalanus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Pseudodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,NA,545.24416012218 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Bosmina,20.1942281526733 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Diaphanosoma,10.0971140763367 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Alona,50.4855703816833 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Chydorus,20.1942281526733 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Ceriodaphnia,585.632616427527 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Daphnia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Diaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Ilyocryptus,100.971140763367 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Macrothrix,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Limnoithona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Camptocercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Acartiella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Eurytemora,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Monospilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Microcyclops,20.1942281526733 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Eucyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Pleuroxus,30.29134222901 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Osphranticum,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Sida,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Disparalona,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Mesocyclops,20.1942281526733 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Graptoleberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Kurzia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Simocephalus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Moina,10.0971140763367 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Leydigia,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Acanthocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Macrocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Picripleuroxus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Arctodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Pseudochydorus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Scapholeberis,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Alonella,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Diacyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Eurycercus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Leptodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Skistodiaptomus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Paracyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Ergasilus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Tropocyclops,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Anchistropus,0 +2019,Sep,2019-09-03,Upstream,W,MA-Ag,During,RMB,Acartia,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Sinocalanus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Pseudodiaptomus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,NA,1064.7879231626969 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Bosmina,131.460129407557 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Diaphanosoma,78.2500770283077 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Alona,31.3000308113231 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Chydorus,43.8200431358523 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Ceriodaphnia,43.8200431358523 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Daphnia,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Diaptomus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Ilyocryptus,9.39000924339693 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Macrothrix,9.39000924339693 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Limnoithona,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Camptocercus,3.13000308113231 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Acartiella,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Eurytemora,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Monospilus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Microcyclops,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Eucyclops,3.13000308113231 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Pleuroxus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Osphranticum,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Sida,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Disparalona,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Mesocyclops,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Graptoleberis,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Kurzia,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Simocephalus,3.13000308113231 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Moina,3.13000308113231 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Leydigia,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Acanthocyclops,12.5200123245292 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Macrocyclops,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Picripleuroxus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Arctodiaptomus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Pseudochydorus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Scapholeberis,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Alonella,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Diacyclops,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Eurycercus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Leptodiaptomus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Skistodiaptomus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Paracyclops,9.39000924339693 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Ergasilus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Tropocyclops,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Anchistropus,0 +2019,Sep,2019-09-04,Upstream,W,MA-Ag,During,STTD,Acartia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Sinocalanus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Pseudodiaptomus,106.649009151296 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,NA,1187.7128566659248 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Bosmina,18.8204133796404 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Diaphanosoma,37.6408267592809 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Alona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Chydorus,6.27347112654681 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Ceriodaphnia,25.0938845061872 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Daphnia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Diaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Ilyocryptus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Macrothrix,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Limnoithona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Camptocercus,12.5469422530936 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Acartiella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Eurytemora,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Monospilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Microcyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Eucyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Pleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Osphranticum,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Sida,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Disparalona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Mesocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Graptoleberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Kurzia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Simocephalus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Moina,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Leydigia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Acanthocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Macrocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Picripleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Arctodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Pseudochydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Scapholeberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Alonella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Diacyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Eurycercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Leptodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Skistodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Paracyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Ergasilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Tropocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Anchistropus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,BL5,Acartia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Sinocalanus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Pseudodiaptomus,75.9093898388552 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,NA,1268.0482835938235 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Bosmina,10.121251978514 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Diaphanosoma,10.121251978514 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Alona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Chydorus,20.242503957028 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Ceriodaphnia,30.3637559355421 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Daphnia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Diaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Ilyocryptus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Macrothrix,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Limnoithona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Camptocercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Acartiella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Eurytemora,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Monospilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Microcyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Eucyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Pleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Osphranticum,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Sida,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Disparalona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Mesocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Graptoleberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Kurzia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Simocephalus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Moina,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Leydigia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Acanthocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Macrocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Picripleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Arctodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Pseudochydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Scapholeberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Alonella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Diacyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Eurycercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Leptodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Skistodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Paracyclops,10.121251978514 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Ergasilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Tropocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Anchistropus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,LIB,Acartia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Sinocalanus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Pseudodiaptomus,17.9090943089957 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,NA,882.2467583968987 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Bosmina,17.9090943089957 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Diaphanosoma,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Alona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Chydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Ceriodaphnia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Daphnia,4.47727357724892 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Diaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Ilyocryptus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Macrothrix,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Limnoithona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Camptocercus,4.47727357724892 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Acartiella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Eurytemora,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Monospilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Microcyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Eucyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Pleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Osphranticum,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Sida,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Disparalona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Mesocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Graptoleberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Kurzia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Simocephalus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Moina,4.47727357724892 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Leydigia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Acanthocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Macrocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Picripleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Arctodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Pseudochydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Scapholeberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Alonella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Diacyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Eurycercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Leptodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Skistodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Paracyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Ergasilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Tropocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Anchistropus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RVB,Acartia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Sinocalanus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Pseudodiaptomus,164.840862014782 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,NA,1791.772200537659 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Bosmina,18.3156513349757 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Diaphanosoma,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Alona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Chydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Ceriodaphnia,9.15782566748787 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Daphnia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Diaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Ilyocryptus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Macrothrix,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Limnoithona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Camptocercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Acartiella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Eurytemora,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Monospilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Microcyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Eucyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Pleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Osphranticum,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Sida,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Disparalona,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Mesocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Graptoleberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Kurzia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Simocephalus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Moina,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Leydigia,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Acanthocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Macrocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Picripleuroxus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Arctodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Pseudochydorus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Scapholeberis,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Alonella,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Diacyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Eurycercus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Leptodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Skistodiaptomus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Paracyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Ergasilus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Tropocyclops,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Anchistropus,0 +2019,Sep,2019-09-04,Downstream,W,MA-Ag,During,RYI,Acartia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Sinocalanus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Pseudodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,NA,216.7238706360298 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Bosmina,2.53734813332676 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Diaphanosoma,2.53734813332676 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Alona,2.17486982856579 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Chydorus,5.43717457141448 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Ceriodaphnia,7.24956609521931 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Daphnia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Diaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Ilyocryptus,1.81239152380483 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Macrothrix,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Limnoithona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Camptocercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Acartiella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Eurytemora,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Monospilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Microcyclops,9.06195761902414 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Eucyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Pleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Osphranticum,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Sida,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Disparalona,0.362478304760966 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Mesocyclops,0.724956609521931 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Graptoleberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Kurzia,1.44991321904386 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Simocephalus,0.362478304760966 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Moina,1.44991321904386 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Leydigia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Acanthocyclops,2.17486982856579 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Macrocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Picripleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Arctodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Pseudochydorus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Scapholeberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Alonella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Diacyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Eurycercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Leptodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Skistodiaptomus,0.362478304760966 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Paracyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Ergasilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Tropocyclops,1.81239152380483 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Anchistropus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,I80,Acartia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Sinocalanus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Pseudodiaptomus,18.9464486749257 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,NA,1140.8468737830262 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Bosmina,82.1012775913447 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Diaphanosoma,25.2619315665676 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Alona,138.940623616122 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Chydorus,18.9464486749257 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Ceriodaphnia,164.202555182689 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Daphnia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Diaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Ilyocryptus,31.5774144582095 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Macrothrix,6.3154828916419 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Limnoithona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Camptocercus,6.3154828916419 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Acartiella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Eurytemora,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Monospilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Microcyclops,31.5774144582095 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Eucyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Pleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Osphranticum,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Sida,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Disparalona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Mesocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Graptoleberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Kurzia,50.5238631331352 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Simocephalus,6.3154828916419 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Moina,69.4703118080609 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Leydigia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Acanthocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Macrocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Picripleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Arctodiaptomus,6.3154828916419 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Pseudochydorus,18.9464486749257 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Scapholeberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Alonella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Diacyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Eurycercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Leptodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Skistodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Paracyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Ergasilus,6.3154828916419 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Tropocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Anchistropus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,LIS,Acartia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Sinocalanus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Pseudodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,NA,436.1485742765892 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Bosmina,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Diaphanosoma,13.6296429461434 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Alona,40.8889288384302 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Chydorus,20.4444644192151 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Ceriodaphnia,906.371255918536 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Daphnia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Diaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Ilyocryptus,20.4444644192151 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Macrothrix,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Limnoithona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Camptocercus,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Acartiella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Eurytemora,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Monospilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Microcyclops,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Eucyclops,13.6296429461434 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Pleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Osphranticum,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Sida,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Disparalona,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Mesocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Graptoleberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Kurzia,54.5185717845736 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Simocephalus,6.8148214730717 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Moina,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Leydigia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Acanthocyclops,13.6296429461434 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Macrocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Picripleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Arctodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Pseudochydorus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Scapholeberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Alonella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Diacyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Eurycercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Leptodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Skistodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Paracyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Ergasilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Tropocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Anchistropus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RCS,Acartia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Sinocalanus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Pseudodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,NA,279.64497370940006 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Bosmina,6.86245334256197 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Diaphanosoma,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Alona,17.1561333564049 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Chydorus,30.8810400415289 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Ceriodaphnia,58.3308534117767 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Daphnia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Diaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Ilyocryptus,13.7249066851239 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Macrothrix,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Limnoithona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Camptocercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Acartiella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Eurytemora,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Monospilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Microcyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Eucyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Pleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Osphranticum,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Sida,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Disparalona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Mesocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Graptoleberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Kurzia,30.8810400415289 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Simocephalus,30.8810400415289 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Moina,34.3122667128099 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Leydigia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Acanthocyclops,30.8810400415289 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Macrocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Picripleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Arctodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Pseudochydorus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Scapholeberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Alonella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Diacyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Eurycercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Leptodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Skistodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Paracyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Ergasilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Tropocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Anchistropus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RD22,Acartia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Sinocalanus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Pseudodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,NA,240.69611320154502 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Bosmina,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Diaphanosoma,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Alona,30.3950723155534 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Chydorus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Ceriodaphnia,1284.19180533213 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Daphnia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Diaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Ilyocryptus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Macrothrix,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Limnoithona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Camptocercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Acartiella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Eurytemora,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Monospilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Microcyclops,68.3889127099953 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Eucyclops,68.3889127099953 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Pleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Osphranticum,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Sida,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Disparalona,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Mesocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Graptoleberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Kurzia,37.9938403944418 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Simocephalus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Moina,75.9876807888836 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Leydigia,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Acanthocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Macrocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Picripleuroxus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Arctodiaptomus,7.59876807888836 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Pseudochydorus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Scapholeberis,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Alonella,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Diacyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Eurycercus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Leptodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Skistodiaptomus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Paracyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Ergasilus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Tropocyclops,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Anchistropus,0 +2019,Sep,2019-09-17,Upstream,W,MA-Ag,During,RMB,Acartia,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Sinocalanus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Pseudodiaptomus,6.91606625930074 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,NA,549.5129009662586 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Bosmina,138.321325186015 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Diaphanosoma,3.45803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Alona,55.3285300744059 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Chydorus,6.91606625930074 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Ceriodaphnia,48.4124638151051 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Daphnia,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Diaptomus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Ilyocryptus,34.5803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Macrothrix,6.91606625930074 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Limnoithona,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Camptocercus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Acartiella,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Eurytemora,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Monospilus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Microcyclops,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Eucyclops,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Pleuroxus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Osphranticum,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Sida,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Disparalona,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Mesocyclops,3.45803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Graptoleberis,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Kurzia,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Simocephalus,3.45803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Moina,17.2901656482518 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Leydigia,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Acanthocyclops,6.91606625930074 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Macrocyclops,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Picripleuroxus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Arctodiaptomus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Pseudochydorus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Scapholeberis,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Alonella,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Diacyclops,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Eurycercus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Leptodiaptomus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Skistodiaptomus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Paracyclops,3.45803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Ergasilus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Tropocyclops,3.45803312965037 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Anchistropus,0 +2019,Sep,2019-09-18,Upstream,W,MA-Ag,During,STTD,Acartia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Sinocalanus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Pseudodiaptomus,69.5021276207834 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,NA,1853.3900698875614 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Bosmina,11.5836879367972 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Diaphanosoma,73.3633569330492 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Alona,7.72245862453149 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Chydorus,3.86122931226575 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Ceriodaphnia,46.334751747189 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Daphnia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Diaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Ilyocryptus,7.72245862453149 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Macrothrix,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Limnoithona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Camptocercus,38.6122931226575 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Acartiella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Eurytemora,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Monospilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Microcyclops,7.72245862453149 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Eucyclops,3.86122931226575 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Pleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Osphranticum,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Sida,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Disparalona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Mesocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Graptoleberis,15.444917249063 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Kurzia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Simocephalus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Moina,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Leydigia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Acanthocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Macrocyclops,15.444917249063 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Picripleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Arctodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Pseudochydorus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Scapholeberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Alonella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Diacyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Eurycercus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Leptodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Skistodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Paracyclops,7.7224586245315 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Ergasilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Tropocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Anchistropus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,BL5,Acartia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Sinocalanus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Pseudodiaptomus,144.478060728419 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,NA,1306.8697311343378 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Bosmina,26.268738314258 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Diaphanosoma,6.5671845785645 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Alona,6.5671845785645 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Chydorus,6.5671845785645 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Ceriodaphnia,26.268738314258 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Daphnia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Diaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Ilyocryptus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Macrothrix,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Limnoithona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Camptocercus,19.7015537356935 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Acartiella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Eurytemora,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Monospilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Microcyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Eucyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Pleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Osphranticum,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Sida,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Disparalona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Mesocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Graptoleberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Kurzia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Simocephalus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Moina,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Leydigia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Acanthocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Macrocyclops,13.134369157129 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Picripleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Arctodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Pseudochydorus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Scapholeberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Alonella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Diacyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Eurycercus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Leptodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Skistodiaptomus,6.5671845785645 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Paracyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Ergasilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Tropocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Anchistropus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,LIB,Acartia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Sinocalanus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Pseudodiaptomus,42.0882637649997 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,NA,339.37170015844777 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Bosmina,12.6264791294999 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Diaphanosoma,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Alona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Chydorus,4.20882637649997 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Ceriodaphnia,2.10441318824999 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Daphnia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Diaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Ilyocryptus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Macrothrix,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Limnoithona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Camptocercus,2.10441318824999 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Acartiella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Eurytemora,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Monospilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Microcyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Eucyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Pleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Osphranticum,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Sida,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Disparalona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Mesocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Graptoleberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Kurzia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Simocephalus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Moina,61.0279824592496 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Leydigia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Acanthocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Macrocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Picripleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Arctodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Pseudochydorus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Scapholeberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Alonella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Diacyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Eurycercus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Leptodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Skistodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Paracyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Ergasilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Tropocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Anchistropus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RVB,Acartia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Sinocalanus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Pseudodiaptomus,129.218235224185 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,NA,507.90677763628713 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Bosmina,5.27421368261981 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Diaphanosoma,5.27421368261981 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Alona,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Chydorus,10.5484273652396 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Ceriodaphnia,10.5484273652396 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Daphnia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Diaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Ilyocryptus,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Macrothrix,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Limnoithona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Camptocercus,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Acartiella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Eurytemora,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Monospilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Microcyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Eucyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Pleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Osphranticum,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Sida,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Disparalona,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Mesocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Graptoleberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Kurzia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Simocephalus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Moina,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Leydigia,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Acanthocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Macrocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Picripleuroxus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Arctodiaptomus,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Pseudochydorus,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Scapholeberis,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Alonella,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Diacyclops,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Eurycercus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Leptodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Skistodiaptomus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Paracyclops,2.6371068413099 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Ergasilus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Tropocyclops,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Anchistropus,0 +2019,Sep,2019-09-18,Downstream,W,MA-Ag,During,RYI,Acartia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Sinocalanus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Pseudodiaptomus,21.9378428283359 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,NA,11670.932384674676 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Bosmina,307.129799596702 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Diaphanosoma,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Alona,65.8135284850076 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Chydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Ceriodaphnia,592.321756365068 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Daphnia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Diaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Ilyocryptus,65.8135284850076 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Macrothrix,65.8135284850076 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Limnoithona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Camptocercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Acartiella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Eurytemora,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Monospilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Microcyclops,43.8756856566717 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Eucyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Pleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Osphranticum,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Sida,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Disparalona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Mesocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Graptoleberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Kurzia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Simocephalus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Moina,21.9378428283359 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Leydigia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Acanthocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Macrocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Picripleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Arctodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Pseudochydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Scapholeberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Alonella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Diacyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Eurycercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Leptodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Skistodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Paracyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Ergasilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Tropocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Anchistropus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,I80,Acartia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Sinocalanus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Pseudodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,NA,47176.3472506428 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Bosmina,1551.46345168641 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Diaphanosoma,19.7638656265785 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Alona,79.0554625063139 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Chydorus,9.88193281328924 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Ceriodaphnia,158.110925012628 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Daphnia,9.88193281328924 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Diaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Ilyocryptus,39.5277312531569 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Macrothrix,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Limnoithona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Camptocercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Acartiella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Eurytemora,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Monospilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Microcyclops,29.6457984398677 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Eucyclops,29.6457984398677 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Pleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Osphranticum,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Sida,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Disparalona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Mesocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Graptoleberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Kurzia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Simocephalus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Moina,29.6457984398677 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Leydigia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Acanthocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Macrocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Picripleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Arctodiaptomus,29.6457984398677 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Pseudochydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Scapholeberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Alonella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Diacyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Eurycercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Leptodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Skistodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Paracyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Ergasilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Tropocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Anchistropus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,LIS,Acartia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Sinocalanus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Pseudodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,NA,360.29085231372113 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Bosmina,2.22152431359357 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Diaphanosoma,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Alona,8.88609725437428 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Chydorus,4.44304862718714 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Ceriodaphnia,51.0950592126521 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Daphnia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Diaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Ilyocryptus,6.66457294078071 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Macrothrix,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Limnoithona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Camptocercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Acartiella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Eurytemora,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Monospilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Microcyclops,11.1076215679678 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Eucyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Pleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Osphranticum,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Sida,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Disparalona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Mesocyclops,8.88609725437428 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Graptoleberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Kurzia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Simocephalus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Moina,22.2152431359357 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Leydigia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Acanthocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Macrocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Picripleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Arctodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Pseudochydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Scapholeberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Alonella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Diacyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Eurycercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Leptodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Skistodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Paracyclops,6.66457294078071 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Ergasilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Tropocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Anchistropus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RCS,Acartia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Sinocalanus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Pseudodiaptomus,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,NA,228.97370876188376 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Bosmina,9.52437328466238 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Diaphanosoma,9.52437328466238 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Alona,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Chydorus,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Ceriodaphnia,73.4737367673955 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Daphnia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Diaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Ilyocryptus,2.72124950990354 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Macrothrix,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Limnoithona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Camptocercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Acartiella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Eurytemora,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Monospilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Microcyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Eucyclops,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Pleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Osphranticum,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Sida,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Disparalona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Mesocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Graptoleberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Kurzia,9.52437328466238 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Simocephalus,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Moina,6.80312377475884 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Leydigia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Acanthocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Macrocyclops,4.0818742648553 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Picripleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Arctodiaptomus,4.0818742648553 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Pseudochydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Scapholeberis,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Alonella,1.36062475495177 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Diacyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Eurycercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Leptodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Skistodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Paracyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Ergasilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Tropocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Anchistropus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RD22,Acartia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Sinocalanus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Pseudodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,NA,3514.502344256169 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Bosmina,75.2212154537588 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Diaphanosoma,12.5368692422931 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Alona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Chydorus,37.6106077268794 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Ceriodaphnia,75.2212154537588 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Daphnia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Diaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Ilyocryptus,37.6106077268794 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Macrothrix,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Limnoithona,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Camptocercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Acartiella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Eurytemora,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Monospilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Microcyclops,37.6106077268794 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Eucyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Pleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Osphranticum,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Sida,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Disparalona,12.5368692422931 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Mesocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Graptoleberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Kurzia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Simocephalus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Moina,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Leydigia,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Acanthocyclops,37.6106077268794 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Macrocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Picripleuroxus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Arctodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Pseudochydorus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Scapholeberis,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Alonella,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Diacyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Eurycercus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Leptodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Skistodiaptomus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Paracyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Ergasilus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Tropocyclops,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Anchistropus,0 +2019,Oct,2019-10-01,Upstream,W,MA-Ag,After,RMB,Acartia,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Sinocalanus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Pseudodiaptomus,13.5852537563846 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,NA,369.91513874155424 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Bosmina,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Diaphanosoma,4.52841791879485 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Alona,6.79262687819228 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Chydorus,6.79262687819228 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Ceriodaphnia,9.05683583758971 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Daphnia,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Diaptomus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Ilyocryptus,4.52841791879485 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Macrothrix,4.52841791879485 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Limnoithona,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Camptocercus,61.1336419037305 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Acartiella,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Eurytemora,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Monospilus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Microcyclops,4.52841791879485 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Eucyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Pleuroxus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Osphranticum,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Sida,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Disparalona,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Mesocyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Graptoleberis,2.26420895939743 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Kurzia,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Simocephalus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Moina,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Leydigia,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Acanthocyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Macrocyclops,9.05683583758971 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Picripleuroxus,2.26420895939743 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Arctodiaptomus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Pseudochydorus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Scapholeberis,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Alonella,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Diacyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Eurycercus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Leptodiaptomus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Skistodiaptomus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Paracyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Ergasilus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Tropocyclops,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Anchistropus,0 +2019,Oct,2019-10-02,Upstream,W,MA-Ag,After,STTD,Acartia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Sinocalanus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Pseudodiaptomus,92.8320224959446 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,NA,689.2777670323884 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Bosmina,6.18880149972964 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Diaphanosoma,9.28320224959446 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Alona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Chydorus,3.09440074986482 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Ceriodaphnia,9.28320224959446 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Daphnia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Diaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Ilyocryptus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Macrothrix,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Limnoithona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Camptocercus,6.18880149972964 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Acartiella,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Eurytemora,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Monospilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Microcyclops,6.18880149972964 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Eucyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Pleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Osphranticum,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Sida,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Disparalona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Mesocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Graptoleberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Kurzia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Simocephalus,3.09440074986482 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Moina,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Leydigia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Acanthocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Macrocyclops,6.18880149972964 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Picripleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Arctodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Pseudochydorus,3.09440074986482 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Scapholeberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Alonella,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Diacyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Eurycercus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Leptodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Skistodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Paracyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Ergasilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Tropocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Anchistropus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,BL5,Acartia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Sinocalanus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Pseudodiaptomus,111.691238281044 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,NA,1313.218195546813 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Bosmina,6.20506879339131 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Diaphanosoma,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Alona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Chydorus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Ceriodaphnia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Daphnia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Diaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Ilyocryptus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Macrothrix,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Limnoithona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Camptocercus,6.20506879339131 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Acartiella,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Eurytemora,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Monospilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Microcyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Eucyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Pleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Osphranticum,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Sida,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Disparalona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Mesocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Graptoleberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Kurzia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Simocephalus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Moina,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Leydigia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Acanthocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Macrocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Picripleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Arctodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Pseudochydorus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Scapholeberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Alonella,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Diacyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Eurycercus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Leptodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Skistodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Paracyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Ergasilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Tropocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Anchistropus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,LIB,Acartia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Sinocalanus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Pseudodiaptomus,1.35176093393403 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,NA,96.30317117371338 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Bosmina,1.80234791191204 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Diaphanosoma,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Alona,1.35176093393403 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Chydorus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Ceriodaphnia,0.901173955956022 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Daphnia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Diaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Ilyocryptus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Macrothrix,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Limnoithona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Camptocercus,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Acartiella,1.80234791191204 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Eurytemora,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Monospilus,2.70352186786807 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Microcyclops,0.901173955956022 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Eucyclops,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Pleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Osphranticum,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Sida,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Disparalona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Mesocyclops,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Graptoleberis,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Kurzia,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Simocephalus,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Moina,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Leydigia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Acanthocyclops,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Macrocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Picripleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Arctodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Pseudochydorus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Scapholeberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Alonella,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Diacyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Eurycercus,0.450586977978011 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Leptodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Skistodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Paracyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Ergasilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Tropocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Anchistropus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RVB,Acartia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Sinocalanus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Pseudodiaptomus,97.9463576150118 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,NA,438.55026963962814 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Bosmina,10.0457802682063 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Diaphanosoma,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Alona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Chydorus,2.51144506705158 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Ceriodaphnia,17.5801154693611 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Daphnia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Diaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Ilyocryptus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Macrothrix,2.51144506705158 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Limnoithona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Camptocercus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Acartiella,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Eurytemora,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Monospilus,5.02289013410317 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Microcyclops,2.51144506705158 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Eucyclops,5.02289013410317 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Pleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Osphranticum,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Sida,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Disparalona,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Mesocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Graptoleberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Kurzia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Simocephalus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Moina,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Leydigia,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Acanthocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Macrocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Picripleuroxus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Arctodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Pseudochydorus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Scapholeberis,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Alonella,2.51144506705158 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Diacyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Eurycercus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Leptodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Skistodiaptomus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Paracyclops,2.51144506705158 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Ergasilus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Tropocyclops,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Anchistropus,0 +2019,Oct,2019-10-02,Downstream,W,MA-Ag,After,RYI,Acartia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Sinocalanus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Pseudodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,NA,4050.443848734781 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Bosmina,53.4535644834679 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Diaphanosoma,13.363391120867 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Alona,80.1803467252019 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Chydorus,73.4986511647684 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Ceriodaphnia,13.363391120867 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Daphnia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Diaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Ilyocryptus,26.726782241734 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Macrothrix,13.363391120867 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Limnoithona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Camptocercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Acartiella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Eurytemora,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Monospilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Microcyclops,26.726782241734 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Eucyclops,33.4084778021674 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Pleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Osphranticum,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Sida,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Disparalona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Mesocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Graptoleberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Kurzia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Simocephalus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Moina,26.726782241734 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Leydigia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Acanthocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Macrocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Picripleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Arctodiaptomus,20.0450866813005 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Pseudochydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Scapholeberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Alonella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Diacyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Eurycercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Leptodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Skistodiaptomus,6.68169556043349 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Paracyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Ergasilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Tropocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Anchistropus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,I80,Acartia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Sinocalanus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Pseudodiaptomus,14.4555271259062 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,NA,4277.390476555635 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Bosmina,28.9110542518123 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Diaphanosoma,14.4555271259062 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Alona,28.9110542518123 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Chydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Ceriodaphnia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Daphnia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Diaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Ilyocryptus,57.8221085036247 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Macrothrix,14.4555271259062 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Limnoithona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Camptocercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Acartiella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Eurytemora,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Monospilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Microcyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Eucyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Pleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Osphranticum,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Sida,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Disparalona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Mesocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Graptoleberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Kurzia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Simocephalus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Moina,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Leydigia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Acanthocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Macrocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Picripleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Arctodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Pseudochydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Scapholeberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Alonella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Diacyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Eurycercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Leptodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Skistodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Paracyclops,14.4555271259062 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Ergasilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Tropocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Anchistropus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,LIS,Acartia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Sinocalanus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Pseudodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,NA,39877.08775194732 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Bosmina,973.106361003291 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Diaphanosoma,81.0921967502743 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Alona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Chydorus,2162.45858000731 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Ceriodaphnia,135.153661250457 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Daphnia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Diaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Ilyocryptus,27.0307322500914 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Macrothrix,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Limnoithona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Camptocercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Acartiella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Eurytemora,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Monospilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Microcyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Eucyclops,135.1536612504574 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Pleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Osphranticum,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Sida,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Disparalona,27.0307322500914 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Mesocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Graptoleberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Kurzia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Simocephalus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Moina,351.399519251188 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Leydigia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Acanthocyclops,81.0921967502743 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Macrocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Picripleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Arctodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Pseudochydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Scapholeberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Alonella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Diacyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Eurycercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Leptodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Skistodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Paracyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Ergasilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Tropocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Anchistropus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RCS,Acartia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Sinocalanus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Pseudodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,NA,4888.144964155228 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Bosmina,63.3179399501973 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Diaphanosoma,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Alona,12.6635879900395 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Chydorus,37.9907639701184 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Ceriodaphnia,31.6589699750986 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Daphnia,15.8294849875493 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Diaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Ilyocryptus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Macrothrix,3.16589699750986 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Limnoithona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Camptocercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Acartiella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Eurytemora,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Monospilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Microcyclops,6.33179399501973 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Eucyclops,3.16589699750986 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Pleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Osphranticum,3.16589699750986 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Sida,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Disparalona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Mesocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Graptoleberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Kurzia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Simocephalus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Moina,53.8202489576677 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Leydigia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Acanthocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Macrocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Picripleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Arctodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Pseudochydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Scapholeberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Alonella,12.6635879900395 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Diacyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Eurycercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Leptodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Skistodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Paracyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Ergasilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Tropocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Anchistropus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RD22,Acartia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Sinocalanus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Pseudodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,NA,52622.51442462166 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Bosmina,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Diaphanosoma,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Alona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Chydorus,2149.45204406645 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Ceriodaphnia,20.0883368604341 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Daphnia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Diaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Ilyocryptus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Macrothrix,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Limnoithona,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Camptocercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Acartiella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Eurytemora,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Monospilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Microcyclops,60.2650105813023 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Eucyclops,60.2650105813023 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Pleuroxus,20.0883368604341 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Osphranticum,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Sida,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Disparalona,40.1766737208682 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Mesocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Graptoleberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Kurzia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Simocephalus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Moina,40.1766737208682 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Leydigia,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Acanthocyclops,80.3533474417364 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Macrocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Picripleuroxus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Arctodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Pseudochydorus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Scapholeberis,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Alonella,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Diacyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Eurycercus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Leptodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Skistodiaptomus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Paracyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Ergasilus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Tropocyclops,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Anchistropus,0 +2019,Oct,2019-10-15,Upstream,W,MA-Ag,After,RMB,Acartia,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Sinocalanus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Pseudodiaptomus,7.53360451392801 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,NA,332.6735841564211 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Bosmina,13.5604881250704 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Diaphanosoma,7.53360451392801 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Alona,3.0134418055712 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Chydorus,3.0134418055712 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Ceriodaphnia,3.0134418055712 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Daphnia,1.5067209027856 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Diaptomus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Ilyocryptus,12.0537672222848 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Macrothrix,21.0940926389984 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Limnoithona,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Camptocercus,7.53360451392801 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Acartiella,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Eurytemora,1.5067209027856 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Monospilus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Microcyclops,9.04032541671361 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Eucyclops,4.5201627083568 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Pleuroxus,7.53360451392801 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Osphranticum,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Sida,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Disparalona,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Mesocyclops,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Graptoleberis,1.5067209027856 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Kurzia,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Simocephalus,1.5067209027856 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Moina,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Leydigia,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Acanthocyclops,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Macrocyclops,3.0134418055712 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Picripleuroxus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Arctodiaptomus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Pseudochydorus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Scapholeberis,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Alonella,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Diacyclops,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Eurycercus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Leptodiaptomus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Skistodiaptomus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Paracyclops,3.0134418055712 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Ergasilus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Tropocyclops,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Anchistropus,0 +2019,Oct,2019-10-16,Upstream,W,MA-Ag,After,STTD,Acartia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Sinocalanus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Pseudodiaptomus,33.6782356974645 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,NA,1086.3636600696389 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Bosmina,14.4335295846276 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Diaphanosoma,9.62235305641841 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Alona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Chydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Ceriodaphnia,4.81117652820921 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Daphnia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Diaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Ilyocryptus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Macrothrix,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Limnoithona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Camptocercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Acartiella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Eurytemora,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Monospilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Microcyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Eucyclops,9.62235305641841 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Pleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Osphranticum,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Sida,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Disparalona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Mesocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Graptoleberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Kurzia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Simocephalus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Moina,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Leydigia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Acanthocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Macrocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Picripleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Arctodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Pseudochydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Scapholeberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Alonella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Diacyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Eurycercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Leptodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Skistodiaptomus,4.81117652820921 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Paracyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Ergasilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Tropocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Anchistropus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,BL5,Acartia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Sinocalanus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Pseudodiaptomus,34.3418462530795 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,NA,4109.57426828518 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Bosmina,11.4472820843598 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Diaphanosoma,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Alona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Chydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Ceriodaphnia,11.4472820843598 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Daphnia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Diaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Ilyocryptus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Macrothrix,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Limnoithona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Camptocercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Acartiella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Eurytemora,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Monospilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Microcyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Eucyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Pleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Osphranticum,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Sida,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Disparalona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Mesocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Graptoleberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Kurzia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Simocephalus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Moina,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Leydigia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Acanthocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Macrocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Picripleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Arctodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Pseudochydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Scapholeberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Alonella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Diacyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Eurycercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Leptodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Skistodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Paracyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Ergasilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Tropocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Anchistropus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,LIB,Acartia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Sinocalanus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Pseudodiaptomus,35.6860440603942 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,NA,286.96011240964765 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Bosmina,8.23524093701404 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Diaphanosoma,2.74508031233801 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Alona,1.37254015616901 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Chydorus,2.74508031233801 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Ceriodaphnia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Daphnia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Diaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Ilyocryptus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Macrothrix,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Limnoithona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Camptocercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Acartiella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Eurytemora,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Monospilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Microcyclops,2.74508031233801 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Eucyclops,1.37254015616901 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Pleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Osphranticum,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Sida,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Disparalona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Mesocyclops,1.37254015616901 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Graptoleberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Kurzia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Simocephalus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Moina,1.37254015616901 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Leydigia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Acanthocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Macrocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Picripleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Arctodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Pseudochydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Scapholeberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Alonella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Diacyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Eurycercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Leptodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Skistodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Paracyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Ergasilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Tropocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Anchistropus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RVB,Acartia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Sinocalanus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Pseudodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,NA,659.220960923906 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Bosmina,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Diaphanosoma,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Alona,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Chydorus,4.55063104497206 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Ceriodaphnia,6.82594656745808 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Daphnia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Diaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Ilyocryptus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Macrothrix,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Limnoithona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Camptocercus,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Acartiella,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Eurytemora,59.1582035846367 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Monospilus,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Microcyclops,6.82594656745808 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Eucyclops,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Pleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Osphranticum,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Sida,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Disparalona,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Mesocyclops,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Graptoleberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Kurzia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Simocephalus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Moina,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Leydigia,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Acanthocyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Macrocyclops,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Picripleuroxus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Arctodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Pseudochydorus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Scapholeberis,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Alonella,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Diacyclops,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Eurycercus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Leptodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Skistodiaptomus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Paracyclops,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Ergasilus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Tropocyclops,2.27531552248603 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Anchistropus,0 +2019,Oct,2019-10-16,Downstream,W,MA-Ag,After,RYI,Acartia,0 diff --git a/phyto_code/RData/FlowDesignation.RData b/phyto_code/RData/FlowDesignation.RData index 08c9a84..6858c87 100644 Binary files a/phyto_code/RData/FlowDesignation.RData and b/phyto_code/RData/FlowDesignation.RData differ diff --git a/phyto_code/phyto.data.processing.FASTR.R b/phyto_code/phyto.data.processing.FASTR.R index 5dd141f..175e969 100644 --- a/phyto_code/phyto.data.processing.FASTR.R +++ b/phyto_code/phyto.data.processing.FASTR.R @@ -28,8 +28,7 @@ rm(list=ls()) load("RData/phyto_raw.RData") # Clean up column names -phyto <- phyto.all %>% - clean_names(case = "big_camel") +phyto <- phyto.all %>% clean_names(case = "big_camel") ## Remove GALD measurements phyto <- phyto %>% select(MethodCode:Biovolume10) @@ -517,6 +516,28 @@ for (i in 1:length(years)) { phyto.gen.NMDS <- do.call(rbind, ls_dfs) +# Calculate PERMANOVA comparisons for phytoplankton communities by Region and Year +genw <- pivot_wider(phyto.gen.BV, + names_from = "Genus", + values_from = "BV.um3.per.L", + values_fill = 0) + +adon.results <- adonis2(genw[c(10:142)] ~ genw$Region + genw$Year, + strata = genw$StationCode, + method = "bray", + perm = 999) + +adon.results <- adonis2(genw[c(10:142)] ~ genw$Region*genw$ActionPhase + genw$Year*genw$ActionPhase + genw$Region*genw$Year, + strata = genw$StationCode, + method = "bray", + perm = 999) + +dm_phyto_gen <- vegdist(genw[c(10:142)], method = "bray") + +bd <- betadisper(dm_phyto_gen, genw$Region) + +anova(bd) +permutest(bd) ## Save data files save(phyto.sum, file = "RData/phyto.sum.RData") diff --git a/phyto_code/phyto.plots.FASTR.R b/phyto_code/phyto.plots.FASTR.R index d42fb75..cc8f392 100644 --- a/phyto_code/phyto.plots.FASTR.R +++ b/phyto_code/phyto.plots.FASTR.R @@ -142,15 +142,19 @@ for (group in groups) { # Plot Upstream and Downstream Total BV by ActionPhase for each year fig1 <- ggplot(data=phyto.sum, aes(y= log10(Total.BV.per.L), x = Region, - color = ActionPhase)) + + fill = ActionPhase)) + geom_boxplot() fig1 + labs(title = "Total Phytoplankton Abundance by Year", y = bquote(Log[10]~'Biovolume Density'~(um^3~L^-1)), x = "Sampling Region", - color = "Pulse Period") + - facet_wrap(Year ~ ., ncol = 2) + fill = "Pulse Period") + + facet_wrap(Year ~ ., ncol = 2) + + scale_fill_manual(values = c("#4DAF4A", + "#984EA3", + "#A3D0D4"), + labels=c("Before", "During", "After")) ggsave(path = output, filename = "fig1_log_phyto_biovolume_by_year_and_AP.png", @@ -499,22 +503,31 @@ ggsave(path = output, # NMDS Plots ------------------------------------------------------------------- # Create NMDS plots for each year by Region -NMDS.Region.plot <- ggplot(phyto.gen.NMDS, aes(x = NMDS1, y = NMDS2, color = Region)) + +NMDS.Region.plot <- ggplot(phyto.gen.NMDS, aes(x = NMDS1, y = NMDS2, color = ActionPhase)) + geom_point(size = 3) + - stat_ellipse() + - labs(title = "Phytoplankton Community Composition") + - labs(color = "Region") + + stat_ellipse() + theme_bw() NMDS.Region.plot + - facet_wrap(Year ~ ., ncol = 3, dir = "h") + facet_wrap(Year ~ ., ncol = 3, dir = "h") + + labs(x = NULL, + y = NULL, + color = "Region") + + theme(axis.text.x=element_blank(), + axis.ticks.x=element_blank(), + axis.text.y=element_blank(), + axis.ticks.y=element_blank(), + panel.grid.major = element_blank(), + panel.grid.minor = element_blank(), + panel.background = element_blank()) + + scale_color_brewer(palette = "Set1") ggsave(path = output, - filename = paste0("phyto_NMDS_biovolume_by_region.png"), + filename = paste0("phyto_NMDS_biovolume_by_AP.png"), device = "png", scale=1.0, units="in", - height=3, + height=5, width=6.5, dpi="print") @@ -530,7 +543,9 @@ NMDS.AP.plot <- ggplot(phyto.gen.NMDS, aes(x = NMDS1, y = NMDS2, color = ActionP theme_bw() NMDS.AP.plot + - facet_wrap(Year ~ ., ncol = 3, dir = "h") + facet_wrap(Year ~ ., ncol = 3, dir = "h") + + scale_color_brewer(palette = "Set1") + ggsave(path = output, filename = paste0("phyto_NMDS_biovolume_by_AP.png"),